(function() {
    
    box.ui('scroll').configure({bar: '<a href="#" class="{$barCls}"><span></span></a>'});
    
    box.dom(function() {
        box.dom('.scroll').each(function() {
            var mode = box.dom(this).getBoxDatas('mode');
            if(mode != 'delegate') {
                box.ui('scroll').create({
                    element: this,
                    bar: true,
                    buttons: false
                });
            }
        });
    });
    
})();
