Base source structure.

This commit is contained in:
Hyunje Alex Jun 2012-11-06 22:00:37 +09:00
parent 2990baddb1
commit b409aa3ff3
2 changed files with 11 additions and 0 deletions

3
min/perfect-scrollbar.min.js vendored Normal file
View File

@ -0,0 +1,3 @@
/* Copyright (c) 2012 HyeonJe Jun (http://github.com/noraesae)
* Licensed under the MIT License
*/(function(e){e.fn.perfectScrollbar=function(){}})(jQuery);

8
src/perfect-scrollbar.js Normal file
View File

@ -0,0 +1,8 @@
/* Copyright (c) 2012 HyeonJe Jun (http://github.com/noraesae)
* Licensed under the MIT License
*/
((function($) {
$.fn.perfectScrollbar = function() {
// TODO
};
})(jQuery));