Skip to content

Commit 82b6573

Browse files
committed
Released v3.0.0
1 parent fa5f19b commit 82b6573

File tree

11 files changed

+16
-16
lines changed

11 files changed

+16
-16
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Code Climate](https://codeclimate.com/github/Invis1ble/scrollbox/badges/gpa.svg)](https://codeclimate.com/github/Invis1ble/scrollbox)
55
![Bower version](https://img.shields.io/bower/v/scrollbox.svg)
66
[![npm version](https://img.shields.io/npm/v/scrollbox.svg)](https://www.npmjs.com/package/scrollbox)
7-
[![Packagist Prerelease](https://img.shields.io/packagist/vpre/Invis1ble/scrollbox.svg)](https://packagist.org/packages/Invis1ble/scrollbox)
7+
[![Packagist Prerelease](https://img.shields.io/packagist/v/Invis1ble/scrollbox.svg)](https://packagist.org/packages/Invis1ble/scrollbox)
88
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)
99

1010
A lightweight jQuery custom scrollbar plugin, that triggers event when reached the defined point.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "invis1ble/scrollbox",
33
"description": "A lightweight jQuery custom scrollbar plugin, that triggers event when reached the defined point.",
4-
"version": "3.0.0-rc.0",
4+
"version": "3.0.0",
55
"type": "component",
66
"keywords": [
77
"jquery",

dist/css/scrollbox.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Scrollbox v3.0.0-rc.0
2+
* Scrollbox v3.0.0
33
* (c) 2013-2016, Max Invis1ble
44
* Licensed under MIT (https://opensource.org/licenses/mit-license.php)
55
*/

dist/css/scrollbox.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js/scrollbox.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
77
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
88

99
/*!
10-
* Scrollbox v3.0.0-rc.0
10+
* Scrollbox v3.0.0
1111
* (c) 2013-2016, Max Invis1ble
1212
* Licensed under MIT (https://opensource.org/licenses/mit-license.php)
1313
*/
1414

1515
var Scrollbox = function ($) {
1616

1717
var NAME = 'scrollbox';
18-
var VERSION = '3.0.0-rc.0';
18+
var VERSION = '3.0.0';
1919
var DATA_KEY = NAME;
2020
var JQUERY_NO_CONFLICT = $.fn[NAME];
2121

dist/js/scrollbox.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.

dist/js/scrollbox.min.js.map

Lines changed: 1 addition & 1 deletion
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,7 +1,7 @@
11
{
22
"name": "scrollbox",
33
"description": "A lightweight jQuery custom scrollbar plugin, that triggers event when reached the defined point.",
4-
"version": "3.0.0-rc.0",
4+
"version": "3.0.0",
55
"author": "Max Invis1ble",
66
"keywords": [
77
"jquery-plugin",

src/js/scrollbox.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/*!
2-
* Scrollbox v3.0.0-rc.0
2+
* Scrollbox v3.0.0
33
* (c) 2013-2016, Max Invis1ble
44
* Licensed under MIT (https://opensource.org/licenses/mit-license.php)
55
*/
66

77
const Scrollbox = (($) => {
88

99
const NAME = 'scrollbox';
10-
const VERSION = '3.0.0-rc.0';
10+
const VERSION = '3.0.0';
1111
const DATA_KEY = NAME;
1212
const JQUERY_NO_CONFLICT = $.fn[NAME];
1313

src/less/scrollbox.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Scrollbox v3.0.0-rc.0
2+
* Scrollbox v3.0.0
33
* (c) 2013-2016, Max Invis1ble
44
* Licensed under MIT (https://opensource.org/licenses/mit-license.php)
55
*/

tests/visual/src/js/setup.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
let anchors = [];
99

1010
for (let j = 1; j <= 10; ++ j) {
11-
let itemId = i + '-' + j;
11+
let itemId = `${i}-${j}`;
1212

13-
anchors.push('<a id="item-' + itemId + '" href="#item-' + itemId + '">Item ' + itemId + '</a>');
13+
anchors.push(`<a id="item-${itemId}" href="#item-${itemId}">Item ${itemId}</a>`);
1414
}
1515

16-
content += '<li id="line' + i + '">' + anchors.join(' ') + '</li>';
16+
content += `<li id="line${i}">${anchors.join(' ')}</li>`;
1717
}
1818

1919
content += '</ul>';

0 commit comments

Comments
 (0)