From: Ori Livneh Date: Sun, 22 Sep 2013 18:56:07 +0000 (-0700) Subject: Remove legacy scripts from .jshintignore X-Git-Tag: 1.31.0-rc.0~18673^2 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/password.php?a=commitdiff_plain;h=d01520a317619c5a18c7c9349ac4aadb5bd72e30;p=lhc%2Fweb%2Fwiklou.git Remove legacy scripts from .jshintignore - skins/common/config.js only needed a singlequote fix to pass JSHint. - skins/common/IEFixes.js passes thanks to I1ee94b184. Change-Id: If23ff6e13ea1e0060e7366346196ee61c4cbb841 --- diff --git a/.jshintignore b/.jshintignore index bc10ad83b6..f740f13731 100644 --- a/.jshintignore +++ b/.jshintignore @@ -25,9 +25,5 @@ resources/jquery.ui/ resources/mediawiki.libs/ resources/jquery.chosen/chosen.jquery.js -# legacy scripts -skins/common/IEFixes.js -skins/common/config.js - # github.com/jshint/jshint/issues/729 tests/qunit/suites/resources/mediawiki/mediawiki.jscompat.test.js diff --git a/skins/common/config.js b/skins/common/config.js index 540eaf9f94..fb8edc1f9a 100644 --- a/skins/common/config.js +++ b/skins/common/config.js @@ -97,7 +97,7 @@ // Show/Hide memcached servers when needed $( 'input[name$="config_wgMainCacheType"]' ).change( function () { - var $memc = $( "#config-memcachewrapper" ); + var $memc = $( '#config-memcachewrapper' ); if( $( 'input[name$="config_wgMainCacheType"]:checked' ).val() === 'memcached' ) { $memc.show( 'slow' ); } else {