/********************************************* * index.js *********************************************/ /* ------------------------------------------- * @init ------------------------------------------- */ $(function(){ var u = new EPOS_CARD.Util(); $.customScroll(); }); /* ------------------------------------------- * @plugin ------------------------------------------- */ (function($){ /* * 既存踏襲 * $.customScroll * カスタムスクロールバー */ $.customScroll = function(){ if($("#news_area").length === 0){ return false; } $(window).load(function(){ $.mCustomScrollbar.defaults.scrollButtons.enable=true; $.mCustomScrollbar.defaults.axis="yx"; $("#news_area").mCustomScrollbar({theme:"my-theme"}); }); }; })(jQuery);