Skip to content
This repository was archived by the owner on Dec 26, 2023. It is now read-only.

Commit e05e9ed

Browse files
committed
v0.6.5
Fix `drag` and `freeScroll` not working
1 parent 2fb03c9 commit e05e9ed

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

dist/pageable.min.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
55
and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
66
7-
Version: 0.6.4
7+
Version: 0.6.5
88
99
*/
1010
.pg-pips{position:fixed;z-index:1000}.pg-pips ul{margin:0;padding:0}.pg-pips ul li{width:14px;height:14px;margin:7px;position:relative}.pg-pips ul li:hover a{width:10px;height:10px;margin:-5px 0 0 -5px}.pg-pips ul li a{display:block;cursor:pointer;text-decoration:none;border-radius:50%;position:absolute;z-index:1;height:4px;width:4px;border:0;background:#fff;left:50%;top:50%;margin:-2px 0 0 -2px}.pg-pips ul li a.active,.pg-pips ul li:hover a.active{position:absolute;height:14px;width:14px;margin:-7px 0 0 -7px;border-radius:100%}.pg-vertical .pg-pips{right:10px;top:50%;-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.pg-vertical .pg-pips li{display:block}.pg-horizontal .pg-pips{bottom:10px;left:50%;-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0)}.pg-horizontal .pg-pips li{display:inline-block}

dist/pageable.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pageable",
3-
"version": "0.6.4",
3+
"version": "0.6.5",
44
"description": "Create full page scrolling web pages. No jQuery.",
55
"main": "dist/pageable.min.js",
66
"scripts": {

src/pageable.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
55
and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
66
7-
Version: 0.6.4
7+
Version: 0.6.5
88
99
*/
1010
(function(root, factory) {
@@ -102,7 +102,7 @@
102102
};
103103

104104
/**
105-
* Pageable 0.6.4
105+
* Pageable 0.6.5
106106
*
107107
* https://github.com/Mobius1/Pageable
108108
* Released under the MIT license
@@ -734,7 +734,7 @@
734734
}
735735

736736
// prevent firing if not on a page
737-
if (!evt.target.closest(this.childSelector)) {
737+
if (!evt.target.closest(this.config.childSelector)) {
738738
return false;
739739
}
740740

src/pageable.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
55
and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
66
7-
Version: 0.6.4
7+
Version: 0.6.5
88
99
*/
1010
$pip-color: #fff;

0 commit comments

Comments
 (0)