Skip to content

Commit 26b1117

Browse files
committed
Use single quotes consistently.
1 parent 9602df3 commit 26b1117

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.jshintrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"noarg": true,
1212
"node" : true,
1313
"noempty": true,
14+
"quotmark": "single",
1415
"plusplus": false,
1516
"regexp": true,
1617
"strict": false,

Gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

jquery.mousewheel.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@
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

@@ -76,7 +76,7 @@
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; }

0 commit comments

Comments
 (0)