$(document).ready(function() { // конфиг селектбоксов chosen var config = { '.chosen-select' : {disable_search_threshold:5}, '.chosen-select-deselect' : {allow_single_deselect:true}, '.chosen-select-no-single' : {disable_search_threshold:5}, '.chosen-select-no-results': {no_results_text:'Oops, nothing found!'}, '.chosen-select-width' : {width:"95%"} } for (var selector in config) { if(typeof($(selector).chosen)!='undefined') { $(selector).chosen(config[selector]); } else { console.warn('Library chosen not loaded'); } } // инициализация поповеров бутстрап if(typeof($('[data-toggle="popover"]').popover)=='function') { $('[data-toggle="popover"]').popover(); } // Обработчик раскрытия выадающих подменю в главном меню fdApp.initUserMenu(); // клик по любому местцу рекламногопремиум баннера переносит настраницу оплаты $("#download-top-note").click(function() { window.location.assign("/turbo?gaid=free_turboline") }); });