diff --git a/dev/slidebars.js b/dev/slidebars.js index bad76ef..2ac578d 100755 --- a/dev/slidebars.js +++ b/dev/slidebars.js @@ -8,7 +8,11 @@ * License url: http://www.adchsm.com/slidebars/license/ */ -var slidebars = function () { +var slidebars; + +(function($) { + +slidebars = function () { /** * Setup @@ -467,4 +471,6 @@ var slidebars = function () { */ $( window ).on( 'resize', this.css.bind( this ) ); -}; \ No newline at end of file +}; + +}(jQuery));