From b409aa3ff344c1c6969bc65c0e5d6169dc99b8f7 Mon Sep 17 00:00:00 2001 From: Hyunje Alex Jun Date: Tue, 6 Nov 2012 22:00:37 +0900 Subject: [PATCH] Base source structure. --- min/perfect-scrollbar.min.js | 3 +++ src/perfect-scrollbar.js | 8 ++++++++ 2 files changed, 11 insertions(+) create mode 100644 min/perfect-scrollbar.min.js create mode 100644 src/perfect-scrollbar.js diff --git a/min/perfect-scrollbar.min.js b/min/perfect-scrollbar.min.js new file mode 100644 index 0000000..f62e628 --- /dev/null +++ b/min/perfect-scrollbar.min.js @@ -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); \ No newline at end of file diff --git a/src/perfect-scrollbar.js b/src/perfect-scrollbar.js new file mode 100644 index 0000000..2b7071d --- /dev/null +++ b/src/perfect-scrollbar.js @@ -0,0 +1,8 @@ +/* Copyright (c) 2012 HyeonJe Jun (http://github.com/noraesae) + * Licensed under the MIT License + */ +((function($) { + $.fn.perfectScrollbar = function() { + // TODO + }; +})(jQuery));