Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b461fa895b | ||
|
|
af7194114a | ||
|
|
540834308e |
@@ -63,7 +63,7 @@ If this option is true, when the scroll reach the end of the side, mousewheel ev
|
||||
Default: false
|
||||
|
||||
### minScrollbarLength
|
||||
When set to an integer value, the thumb part of the scrollbar will not shrink below that number of pixels
|
||||
When set to an integer value, the thumb part of the scrollbar will not shrink below that number of pixels.
|
||||
Default: null
|
||||
|
||||
How to Use
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,4 +1,4 @@
|
||||
/*! perfect-scrollbar - v0.4.2
|
||||
/*! perfect-scrollbar - v0.4.3
|
||||
* http://noraesae.github.com/perfect-scrollbar/
|
||||
* Copyright (c) 2013 HyeonJe Jun; Licensed MIT */
|
||||
|
||||
File diff suppressed because one or more lines are too long
4
min/perfect-scrollbar-0.4.3.with-mousewheel.min.js
vendored
Normal file
4
min/perfect-scrollbar-0.4.3.with-mousewheel.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "perfect-scrollbar",
|
||||
"version": "0.4.2",
|
||||
"version": "0.4.3",
|
||||
"engines": {
|
||||
"node": ">= 0.8.0"
|
||||
},
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
"name": "perfect-scrollbar",
|
||||
"title": "perfect-scrollbar",
|
||||
"description": "Tiny but perfect jquery scrollbar plugin.",
|
||||
"version": "0.4.2",
|
||||
"version": "0.4.3",
|
||||
"author": {
|
||||
"name": "HyeonJe Jun",
|
||||
"email": "noraesae@yuiazu.net",
|
||||
|
||||
@@ -233,6 +233,10 @@
|
||||
e.preventDefault();
|
||||
}
|
||||
});
|
||||
|
||||
// fix Firefox scroll problem
|
||||
$this.bind('DOMMouseScroll.perfect-scroll', function (e) { e.preventDefault(); });
|
||||
$this.bind('MozMousePixelScroll.perfect-scroll', function (e) { e.preventDefault(); });
|
||||
};
|
||||
|
||||
// bind mobile touch handler
|
||||
|
||||
Reference in New Issue
Block a user