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

Commit 782d83d

Browse files
author
Mobius1
committed
v0.6.2, fix package.json
1 parent 8c4c209 commit 782d83d

File tree

5 files changed

+30
-10
lines changed

5 files changed

+30
-10
lines changed

dist/pageable.min.css

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1-
/**
2-
* Pageable 0.6.1
3-
*
4-
* https://github.com/Mobius1/Pageable
5-
* Released under the MIT license
6-
*/
1+
/*
2+
Pageable
3+
Copyright (c) 2017 Karl Saunders (http://mobius.ovh)
4+
Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
5+
and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
6+
7+
Version: 0.6.2
8+
9+
*/
710
.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: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "pageable",
3-
"version": "0.6.1",
3+
"version": "0.6.2",
44
"description": "Create full page scrolling web pages. No jQuery.",
5-
"main": "dist/pageable.js",
5+
"main": "dist/pageable.min.js",
66
"scripts": {
77
"test": "./node_modules/.bin/karma start --single-run --reporters=progress"
88
},

src/pageable.js

Lines changed: 2 additions & 2 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.1
7+
Version: 0.6.2
88
99
*/
1010
(function(root, factory) {
@@ -102,7 +102,7 @@
102102
};
103103

104104
/**
105-
* Pageable 0.6.1
105+
* Pageable 0.6.2
106106
*
107107
* https://github.com/Mobius1/Pageable
108108
* Released under the MIT license

src/pageable.scss

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1+
/*
2+
Pageable
3+
Copyright (c) 2017 Karl Saunders (http://mobius.ovh)
4+
Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
5+
and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
16
7+
Version: 0.6.2
8+
9+
*/
210
$pip-color: #fff;
311
$pip-size: 4px;
412
$pip-hover-size: 10px;

0 commit comments

Comments
 (0)