Skip to content

Commit afbf5c5

Browse files
committed
Merge pull request rochal#229 from ck-developer/feature/bower
add bower.son bump up version
2 parents f1e3eeb + f730bc6 commit afbf5c5

File tree

5 files changed

+58
-3
lines changed

5 files changed

+58
-3
lines changed

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
### Node template
2+
node_modules/
3+
npm-debug.log*
4+
5+
### JetBrains template
6+
*.iml
7+
.idea/
8+
/out/
9+
.idea_modules/

bower.json

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"name": "jquery-slimscroll",
3+
"version": "1.3.8",
4+
"description": "slimScroll is a small jQuery plugin that transforms any div into a scrollable area. slimScroll doesn't occupy any visual space as it only appears on a user initiated mouse-over.",
5+
"keywords": [
6+
"scrollbar",
7+
"scroll",
8+
"slimscroll",
9+
"scrollable",
10+
"scrolling",
11+
"scroller",
12+
"ui",
13+
"jquery-plugin",
14+
"ecosystem:jquery"
15+
],
16+
"homepage": "http://rocha.la/jQuery-slimScroll/",
17+
"authors": [
18+
{ "name": "Piotr Rochala", "homepage": "http://rocha.la/" }
19+
],
20+
"repository": {
21+
"type": "git",
22+
"url": "https://github.com/rochal/jQuery-slimScroll.git"
23+
},
24+
"main": [
25+
"jquery.slimscroll.js",
26+
"jquery.slimscroll.min.js"
27+
],
28+
"licenses" : [
29+
{
30+
"type": "MIT",
31+
"url": "http://www.opensource.org/licenses/mit-license.php"
32+
},
33+
{
34+
"type": "GPL",
35+
"url": "http://www.opensource.org/licenses/gpl-license.php"
36+
}
37+
],
38+
"moduleType": [],
39+
"ignore": [
40+
"**/.*",
41+
"node_modules",
42+
"bower_components",
43+
"test",
44+
"tests"
45+
]
46+
}

jquery.slimscroll.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
33
* and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
44
*
5-
* Version: 1.3.7
5+
* Version: 1.3.8
66
*
77
*/
88
(function($) {

jquery.slimscroll.min.js

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,6 +1,6 @@
11
{
22
"name" : "jquery-slimscroll",
3-
"version" : "1.3.7",
3+
"version" : "1.3.8",
44
"title" : "jQuery slimScroll scrollbar",
55
"description" : "slimScroll is a small jQuery plugin that transforms any div into a scrollable area. slimScroll doesn't occupy any visual space as it only appears on a user initiated mouse-over.",
66
"keywords" : ["scrollbar", "scroll", "slimscroll", "scrollable", "scrolling", "scroller", "ui", "jquery-plugin", "ecosystem:jquery"],

0 commit comments

Comments
 (0)