You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
912 B
38 lines
912 B
2 months ago
|
$(document).ready(function () {
|
||
|
|
||
|
function set_lang(lang){
|
||
|
var cookie_life = new Date();
|
||
|
cookie_life.setTime(cookie_life.getTime() + (20 * 60 * 1000));
|
||
|
$.cookie('lang', lang, { expires: cookie_life });
|
||
|
}
|
||
|
|
||
|
$('#to_ru_lang').click(function(){
|
||
|
set_lang('ru');
|
||
|
window.location.href = window.location.origin + window.location.pathname;
|
||
|
})
|
||
|
|
||
|
$('#to_en_lang').click(function(){
|
||
|
set_lang('en');
|
||
|
window.location.href = window.location.origin + window.location.pathname;
|
||
|
})
|
||
|
|
||
|
|
||
|
|
||
|
//Для DEMO
|
||
|
$('#demo_modal').modal('show');
|
||
|
|
||
|
if($('#demo_password').length == 0)
|
||
|
setTimeout(function() { $('#demo_modal').modal('hide'); }, 3000);
|
||
|
|
||
|
|
||
|
|
||
|
$('.close_modal').click(function(){
|
||
|
$('#'+$(this).data('dismiss')).modal('hide');
|
||
|
})
|
||
|
|
||
|
$('#full_vers').click(function () {
|
||
|
$('#feedbackModal').modal('show');
|
||
|
});
|
||
|
|
||
|
});
|