diff --git a/Gruntfile.js b/Gruntfile.js index f3ad975..9464b97 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -21,11 +21,7 @@ module.exports = function (grunt) { }, min: { files: { - 'min/perfect-scrollbar.min.js': ['src/perfect-scrollbar.js'], - 'min/perfect-scrollbar.with-mousewheel.min.js': [ - 'src/perfect-scrollbar.js', - 'src/jquery.mousewheel.js' - ] + 'min/perfect-scrollbar.min.js': ['src/perfect-scrollbar.js'] } } }, diff --git a/README.md b/README.md index ce91728..6a0beac 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ perfect-scrollbar supports optional parameters. ### wheelSpeed The scroll speed applied to mousewheel event. -**Default: 10** +**Default: 1** ### wheelPropagation If this option is true, when the scroll reach the end of the side, mousewheel event will be propagated to parent element. @@ -167,13 +167,6 @@ $("#Demo").perfectScrollbar('update'); Also you can get the informations about how to use the plugin from example codes in the `examples` directory of the source tree. -Very helpful friends --------------------- - -perfect-scrollbar supports [jquery-mousewheel](https://github.com/brandonaaron/jquery-mousewheel). If you want to use mousewheel features, please include jquery-mousewheel before using perfect-scrollbar. - -If you want to make this plugin's update function more responsive, [jquery-resize](https://github.com/cowboy/jquery-resize) can be helpful. - Contribution ------------ diff --git a/examples/options-default.html b/examples/options-default.html index fa7bc3a..ed785b6 100644 --- a/examples/options-default.html +++ b/examples/options-default.html @@ -5,7 +5,6 @@