File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1111 "noarg" : true ,
1212 "node" : true ,
1313 "noempty" : true ,
14+ "quotmark" : " single" ,
1415 "plusplus" : false ,
1516 "regexp" : true ,
1617 "strict" : false ,
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ module.exports = function(grunt) {
1717 }
1818 } ) ;
1919
20- // Load the plugin that provides the " uglify" task.
20+ // Load the plugin that provides the ' uglify' task.
2121 grunt . loadNpmTasks ( 'grunt-contrib-uglify' ) ;
2222 grunt . loadNpmTasks ( 'grunt-contrib-jshint' ) ;
2323
Original file line number Diff line number Diff line change 5757
5858 $ . fn . extend ( {
5959 mousewheel : function ( fn ) {
60- return fn ? this . bind ( " mousewheel" , fn ) : this . trigger ( " mousewheel" ) ;
60+ return fn ? this . bind ( ' mousewheel' , fn ) : this . trigger ( ' mousewheel' ) ;
6161 } ,
6262
6363 unmousewheel : function ( fn ) {
64- return this . unbind ( " mousewheel" , fn ) ;
64+ return this . unbind ( ' mousewheel' , fn ) ;
6565 }
6666 } ) ;
6767
7676 absDeltaXY = 0 ,
7777 fn ;
7878 event = $ . event . fix ( orgEvent ) ;
79- event . type = " mousewheel" ;
79+ event . type = ' mousewheel' ;
8080
8181 // Old school scrollwheel delta
8282 if ( orgEvent . wheelDelta ) { delta = orgEvent . wheelDelta ; }
You can’t perform that action at this time.
0 commit comments