-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Natural scroll emulation is now optional (1.3.0)
- Loading branch information
Benoit Asselin
committed
Jul 7, 2015
1 parent
d0d2c61
commit 4d6c43c
Showing
8 changed files
with
106 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
.DS_Store | ||
|
||
/.idea | ||
/bower_components | ||
/node_modules | ||
/node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
module.exports = function(grunt) { | ||
"use strict"; | ||
grunt.initConfig({ | ||
pkg: grunt.file.readJSON("package.json"), | ||
uglify: { | ||
options: { | ||
preserveComments: false, | ||
banner: "/*! <%= pkg.main %> v<%= pkg.version %>\n" + | ||
" * (c) 2014, Benoit Asselin contact(at)ab-d.fr\n" + | ||
" * MIT License\n" + | ||
" */\n" | ||
}, | ||
build: { | ||
src: "mousewheelStopPropagation.js", | ||
dest: "mousewheelStopPropagation.min.js" | ||
} | ||
} | ||
}); | ||
grunt.loadNpmTasks("grunt-contrib-uglify"); | ||
grunt.registerTask("default", ["uglify"]); | ||
}; | ||
"use strict"; | ||
|
||
grunt.initConfig({ | ||
pkg: grunt.file.readJSON("package.json"), | ||
uglify: { | ||
options: { | ||
preserveComments: false, | ||
banner: "/*! <%= pkg.main %> v<%= pkg.version %>\n" + | ||
" * (c) 2014, Benoit Asselin contact(at)ab-d.fr\n" + | ||
" * MIT License\n" + | ||
" */\n" | ||
}, | ||
build: { | ||
src: "mousewheelStopPropagation.js", | ||
dest: "mousewheelStopPropagation.min.js" | ||
} | ||
} | ||
}); | ||
|
||
grunt.loadNpmTasks("grunt-contrib-uglify"); | ||
grunt.registerTask("default", ["uglify"]); | ||
|
||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters