Compare commits

..

5 Commits
0.6.0 ... 0.6.1

Author SHA1 Message Date
Hyunje Alex Jun
2e071274db Release 0.6.1
1. jQuery adaptor error fix.
2015-03-06 02:02:25 +09:00
Jun
b23ad2834e Merge pull request #297 from BR0kEN-/issue-296
Fixed an issue #296 with undefined function in jQuery plugin.
2015-03-06 00:50:35 +09:00
Sergey Bondarenko
cbdf812de8 Issue #296 has been fixed 2015-03-05 14:41:12 +02:00
Jun
5e363b876f Merge pull request #293 from DanielApt/patch-1
#277 has been closed, remove reference to it in README.md
2015-03-03 03:00:20 +09:00
DanielApt
cbf96b3302 #227 has been closed, remove reference to it in README.md 2015-03-02 17:57:00 +00:00
3 changed files with 2 additions and 5 deletions

View File

@@ -4,9 +4,6 @@ Minimalistic but perfect custom scrollbar plugin
[![Travis CI](https://travis-ci.org/noraesae/perfect-scrollbar.svg?branch=master)](https://travis-ci.org/noraesae/perfect-scrollbar)
**The plugin is currently changing quickly in the master branch.
Please refer to the related issue [#227](https://github.com/noraesae/perfect-scrollbar/issues/277).**
If you want information of old versions<0.6.0, please refer to
[an old documentation](https://github.com/noraesae/perfect-scrollbar/tree/0.5.9).

View File

@@ -1,6 +1,6 @@
{
"name": "perfect-scrollbar",
"version": "0.6.0",
"version": "0.6.1",
"description": "Minimalistic but perfect custom scrollbar plugin",
"author": "Hyunje Alex Jun <me@noraesae.net>",
"contributors": [

View File

@@ -28,7 +28,7 @@ function mountJQuery(jQuery) {
}
}
return $(this);
return jQuery(this);
});
};
}