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 11
11
"noarg" : true ,
12
12
"node" : true ,
13
13
"noempty" : true ,
14
+ "quotmark" : " single" ,
14
15
"plusplus" : false ,
15
16
"regexp" : true ,
16
17
"strict" : false ,
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ module.exports = function(grunt) {
17
17
}
18
18
} ) ;
19
19
20
- // Load the plugin that provides the " uglify" task.
20
+ // Load the plugin that provides the ' uglify' task.
21
21
grunt . loadNpmTasks ( 'grunt-contrib-uglify' ) ;
22
22
grunt . loadNpmTasks ( 'grunt-contrib-jshint' ) ;
23
23
Original file line number Diff line number Diff line change 57
57
58
58
$ . fn . extend ( {
59
59
mousewheel : function ( fn ) {
60
- return fn ? this . bind ( " mousewheel" , fn ) : this . trigger ( " mousewheel" ) ;
60
+ return fn ? this . bind ( ' mousewheel' , fn ) : this . trigger ( ' mousewheel' ) ;
61
61
} ,
62
62
63
63
unmousewheel : function ( fn ) {
64
- return this . unbind ( " mousewheel" , fn ) ;
64
+ return this . unbind ( ' mousewheel' , fn ) ;
65
65
}
66
66
} ) ;
67
67
76
76
absDeltaXY = 0 ,
77
77
fn ;
78
78
event = $ . event . fix ( orgEvent ) ;
79
- event . type = " mousewheel" ;
79
+ event . type = ' mousewheel' ;
80
80
81
81
// Old school scrollwheel delta
82
82
if ( orgEvent . wheelDelta ) { delta = orgEvent . wheelDelta ; }
You can’t perform that action at this time.
0 commit comments