Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
### Node template
node_modules/
npm-debug.log*

### JetBrains template
*.iml
.idea/
/out/
.idea_modules/
46 changes: 46 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"name": "jquery-slimscroll",
"version": "1.3.8",
"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.",
"keywords": [
"scrollbar",
"scroll",
"slimscroll",
"scrollable",
"scrolling",
"scroller",
"ui",
"jquery-plugin",
"ecosystem:jquery"
],
"homepage": "http://rocha.la/jQuery-slimScroll/",
"authors": [
{ "name": "Piotr Rochala", "homepage": "http://rocha.la/" }
],
"repository": {
"type": "git",
"url": "https://github.com/rochal/jQuery-slimScroll.git"
},
"main": [
"jquery.slimscroll.js",
"jquery.slimscroll.min.js"
],
"licenses" : [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
},
{
"type": "GPL",
"url": "http://www.opensource.org/licenses/gpl-license.php"
}
],
"moduleType": [],
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
]
}
2 changes: 1 addition & 1 deletion jquery.slimscroll.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
* and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
*
* Version: 1.3.7
* Version: 1.3.8
*
*/
(function($) {
Expand Down
2 changes: 1 addition & 1 deletion jquery.slimscroll.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name" : "jquery-slimscroll",
"version" : "1.3.7",
"version" : "1.3.8",
"title" : "jQuery slimScroll scrollbar",
"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.",
"keywords" : ["scrollbar", "scroll", "slimscroll", "scrollable", "scrolling", "scroller", "ui", "jquery-plugin", "ecosystem:jquery"],
Expand Down