Вход Регистрация
Файл: templates/backend/default/assets/js/core.js
Строк: 838
<?php
var color_green="#27cebc";
var 
color_blue="#00acec";
var 
color_yellow="#FDD01C";
var 
color_red="#f35958";
var 
color_grey="#dce0e8";
var 
color_black="#1b1e24";
var 
color_purple="#6d5eac";
var 
color_primary="#6d5eac";
var 
color_success="#4eb2f5";
var 
color_danger="#f35958";
var 
color_warning="#f7cf5e";
var 
color_info="#3b4751";

$(
document).ready(function () {
    
calculateHeight();
    $(
".remove-widget").click(function () {
        $(
this).parent().parent().parent().addClass('animated fadeOut');
        $(
this).parent().parent().parent().attr('id''id_a');

        
//$(this).parent().parent().parent().hide();
        
setTimeout(function () {
            $(
'#id_a').remove();
        }, 
400);
        return 
false;
    });

    $(
".create-folder").click(function () {
        $(
'.folder-input').show();
        return 
false;
    });

    $(
".folder-name").keypress(function (e) {
        if (
e.which == 13) {
            $(
'.folder-input').hide();
            $(
'<li><a href="#"><div class="status-icon green"></div>' + $(this).val() + '</a> </li>').insertBefore(".folder-input");
            $(
this).val('');
        }
    });

    $(
"#menu-collapse").click(function () {
        if ($(
'.page-sidebar').hasClass('mini')) {
            $(
'.page-sidebar').removeClass('mini');
            $(
'.page-content').removeClass('condensed-layout');
            $(
'.footer-widget').show();
        } else {
            $(
'.page-sidebar').addClass('mini');
            $(
'.page-content').addClass('condensed-layout');
            $(
'.footer-widget').hide();
            
calculateHeight();
        }
    });

    $(
".inside").children('input').blur(function () {
        $(
this).parent().children('.add-on').removeClass('input-focus');
    });

    $(
".inside").children('input').focus(function () {
        $(
this).parent().children('.add-on').addClass('input-focus');
    });

    $(
".input-group.transparent").children('input').blur(function () {
        $(
this).parent().children('.input-group-addon').removeClass('input-focus');
    });

    $(
".input-group.transparent").children('input').focus(function () {
        $(
this).parent().children('.input-group-addon').addClass('input-focus');
    });

    $(
".bootstrap-tagsinput input").blur(function () {
        $(
this).parent().removeClass('input-focus');
    });

    $(
".bootstrap-tagsinput input").focus(function () {
        $(
this).parent().addClass('input-focus');
    });

    $(
'#my-task-list').popover({
        
htmltrue,
        
content: function () {
            return $(
'#notification-list').html();
        }
    });

    $(
'#user-options').click(function () {
        $(
'#my-task-list').popover('hide');
    });
    
//*********************************** BEGIN CHAT POPUP*****************************
//    if($('body').hasClass('rtl')){
//        $('.chat-menu-toggle').sidr({
//        name: 'sidr',
//        side: 'left',
//        complete: function () {}
//        });
//    }
//    else{
//        $('.chat-menu-toggle').sidr({
//            name: 'sidr',
//            side: 'right',
//            complete: function () {}
//        });        
//    }
    
$(".simple-chat-popup").click(function () {
        $(
this).addClass('hide');
        $(
'#chat-message-count').addClass('hide');
    });

    
setTimeout(function () {
        $(
'#chat-message-count').removeClass('hide');
        $(
'#chat-message-count').addClass('animated bounceIn');
        $(
'.simple-chat-popup').removeClass('hide');
        $(
'.simple-chat-popup').addClass('animated fadeIn');
    }, 
5000);
    
setTimeout(function () {
        $(
'.simple-chat-popup').addClass('hide');
        $(
'.simple-chat-popup').removeClass('animated fadeIn');
        $(
'.simple-chat-popup').addClass('animated fadeOut');
    }, 
8000);

    
//*********************************** END CHAT POPUP*****************************    

    //**********************************BEGIN MAIN MENU********************************
    
jQuery('.page-sidebar li > a').on('click', function (e) {
        if ($(
this).next().hasClass('sub-menu') === false) {
            return;
        }
        var 
parent = $(this).parent().parent();


        
parent.children('li.open').children('a').children('.arrow').removeClass('open');
        
parent.children('li.open').children('a').children('.arrow').removeClass('active');
        
parent.children('li.open').children('.sub-menu').slideUp(200);
        
parent.children('li').removeClass('open');
        
//  parent.children('li').removeClass('active');

        
var sub jQuery(this).next();
        if (
sub.is(":visible")) {
            
jQuery('.arrow'jQuery(this)).removeClass("open");
            
jQuery(this).parent().removeClass("active");
            
sub.slideUp(200, function () {
                
handleSidenarAndContentHeight();
            });
        } else {
            
jQuery('.arrow'jQuery(this)).addClass("open");
            
jQuery(this).parent().addClass("open");
            
sub.slideDown(200, function () {
                
handleSidenarAndContentHeight();
            });
        }

        
e.preventDefault();
    });
    
//Auto close open menus in Condensed menu
    
if ($('.page-sidebar').hasClass('mini')) {
        var 
elem jQuery('.page-sidebar ul');
        
elem.children('li.open').children('a').children('.arrow').removeClass('open');
        
elem.children('li.open').children('a').children('.arrow').removeClass('active');
        
elem.children('li.open').children('.sub-menu').slideUp(200);
        
elem.children('li').removeClass('open');
    }
    
//**********************************END MAIN MENU********************************
    //**** Element Background and height ********************************************

    
$('[data-height-adjust="true"]').each(function () {
        var 
= $(this).attr('data-elem-height');
        $(
this).css("min-height"h);
        $(
this).css('background-image''url(' + $(this).attr("data-background-image") + ')');
        $(
this).css('background-repeat''no-repeat');
        if ($(
this).attr('data-background-image')) {

        }
    });

    function 
equalHeight(group) {
        
tallest 0;
        
group.each(function () {
            
thisHeight = $(this).height();
            if (
thisHeight tallest) {
                
tallest thisHeight;
            }
        });
        
group.height(tallest);
    }

    $(
'[data-aspect-ratio="true"]').each(function () {
        $(
this).height($(this).width());
    });

    $(
'[data-sync-height="true"]').each(function () {
        
equalHeight($(this).children());
    });

    $(
window).resize(function () {
        $(
'[data-aspect-ratio="true"]').each(function () {
            $(
this).height($(this).width());
        });
        $(
'[data-sync-height="true"]').each(function () {
            
equalHeight($(this).children());
        });

    });
    $(
'#main-menu-wrapper').scrollbar();
   
// initMainMenu();
    //***********************************BEGIN Fixed Menu*****************************
    
function initMainMenu() {

        
    }
    
initExtendedLayoutMenuScroll();
    function 
initExtendedLayoutMenuScroll(){


    }
    $(
'.tip').tooltip();
    
//***********************************BEGIN Horinzontal Menu*****************************
    
$('.horizontal-menu .bar-inner > ul > li').on('click', function () {
        $(
this).toggleClass('open').siblings().removeClass('open');

    });
     if($(
'body').hasClass('horizontal-menu')){
        $(
'.content').on('click', function () {
            $(
'.horizontal-menu .bar-inner > ul > li').removeClass('open');
        });
     }
    
//***********************************END Horinzontal Menu*****************************
    //***********************************BEGIN Lazyload images*****************************    
    
if ($.fn.lazyload) {
        $(
"img.lazy").lazyload({
            
effect"fadeIn"
        
});
    }
    
//***********************************BEGIN Grids*****************************        
    
$('.grid .tools a.remove').on('click', function () {
        var 
removable jQuery(this).parents(".grid");
        if (
removable.next().hasClass('grid') || removable.prev().hasClass('grid')) {
            
jQuery(this).parents(".grid").remove();
        } else {
            
jQuery(this).parents(".grid").parent().remove();
        }
    });

    $(
'.grid .tools a.reload').on('click', function () {
        var 
el jQuery(this).parents(".grid");
        
blockUI(el);
        
window.setTimeout(function () {
            
unblockUI(el);
        }, 
1000);
    });

    $(
'.grid .tools .collapse, .grid .tools .expand').on('click', function () {
        var 
el jQuery(this).parents(".grid").children(".grid-body");
        if (
jQuery(this).hasClass("collapse")) {
            
jQuery(this).removeClass("collapse").addClass("expand");
            
el.slideUp(200);
        } else {
            
jQuery(this).removeClass("expand").addClass("collapse");
            
el.slideDown(200);
        }
    });

    $(
'.user-info .collapse').on('click', function () {
        
jQuery(this).parents(".user-info ").stop().slideToggle(400"swing");
    });
    
//***********************************END Grids*****************************                
    
var handleSidenarAndContentHeight = function () {
        var 
content = $('.page-content');
        var 
sidebar = $('.page-sidebar');

        if (!
content.attr("data-height")) {
            
content.attr("data-height"content.height());
        }

        if (
sidebar.height() > content.height()) {
            
content.css("min-height"sidebar.height() + 120);
        } else {
            
content.css("min-height"content.attr("data-height"));
        }
    };
    $(
'.panel-group').on('hidden.bs.collapse', function (e) {
        $(
this).find('.panel-heading').not($(e.target)).addClass('collapsed');
    });

    $(
'.panel-group').on('shown.bs.collapse', function (e) {
        
// $(e.target).prev('.accordion-heading').find('.accordion-toggle').removeClass('collapsed');
    
});

    
//***********************************BEGIN Layout Readjust *****************************        

    
$(window).setBreakpoints({
        
distincttrue,
        
breakpoints: [
        
320,
        
480,
        
768,
        
1024]
    });
    
//Break point entry 
    
$(window).bind('enterBreakpoint320', function () {
        $(
'#main-menu-toggle-wrapper').show();
        $(
'#portrait-chat-toggler').show();
        $(
'#header_inbox_bar').hide();
        $(
'#main-menu').removeClass('mini');
        $(
'.page-content').removeClass('condensed');
        
rebuildSider();
    });

    $(
window).bind('enterBreakpoint480', function () {
        $(
'#main-menu-toggle-wrapper').show();
        $(
'.header-seperation').show();
        $(
'#portrait-chat-toggler').show();
        $(
'#header_inbox_bar').hide();
        
//Incase if condensed layout is applied
        
$('#main-menu').removeClass('mini');
        $(
'.page-content').removeClass('condensed');
        
rebuildSider();

    });

    $(
window).bind('enterBreakpoint768', function () {
        $(
'#main-menu-toggle-wrapper').show();
        $(
'#portrait-chat-toggler').show();
        $(
'#header_inbox_bar').hide();

        if (/
Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)) {
            $(
'#main-menu').removeClass('mini');
            $(
'.page-content').removeClass('condensed');
            
rebuildSider();
        }

    });
    
    
    $(
window).bind('enterBreakpoint1024', function () {
        if (/
Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)) {
            var 
elem jQuery('.page-sidebar ul');
            
elem.children('li.open').children('a').children('.arrow').removeClass('open');
            
elem.children('li.open').children('a').children('.arrow').removeClass('active');
            
elem.children('li.open').children('.sub-menu').slideUp(200);
            
elem.children('li').removeClass('open');
        }
        $(
'.bar').show();
        $(
'.bar').css('overflow','visible');
    });

    $(
window).bind('exitBreakpoint320', function () {
        $(
'#main-menu-toggle-wrapper').hide();
        $(
'#portrait-chat-toggler').hide();
        $(
'#header_inbox_bar').show();
        
closeAndRestSider();
    });

    $(
window).bind('exitBreakpoint480', function () {
        $(
'#main-menu-toggle-wrapper').hide();
        $(
'#portrait-chat-toggler').hide();
        $(
'#header_inbox_bar').show();
        
closeAndRestSider();
    });

    $(
window).bind('exitBreakpoint768', function () {
        $(
'#main-menu-toggle-wrapper').hide();
        $(
'#portrait-chat-toggler').hide();
        $(
'#header_inbox_bar').show();
        
closeAndRestSider();
    });

    
//***********************************END Layout Readjust *****************************    

    //***********************************BEGIN Function calls *****************************    
    
function closeAndRestSider() {
        if ($(
'#main-menu').attr('data-inner-menu') == '1') {
            $(
'#main-menu').addClass("mini");
            $(
'#main-menu').removeClass("left");
        } else {
            $(
'#main-menu').removeClass("left");
        }

    }
    $(
'#main-menu-toggle').on('touchstart click', function (e) {
     
e.preventDefault();
    
toggleMainMenu();
    });
    $(
'#chat-menu-toggle, .chat-menu-toggle').on('touchstart click', function (e) {
        
e.preventDefault();
       
toggleChat();
    });

    function 
rebuildSider() {

    }
    
//***********************************END Function calls *****************************    

    //***********************************BEGIN Main Menu Toggle *****************************    
    
$('#layout-condensed-toggle').click(function () {
        if ($(
'#main-menu').attr('data-inner-menu') == '1') {
            
//Do nothing
            
console.log("Menu is already condensed");
        } else {
            if ($(
'#main-menu').hasClass('mini')) {
                $(
'body').removeClass('grey');
                $(
'body').removeClass('condense-menu');
                $(
'#main-menu').removeClass('mini');
                $(
'.page-content').removeClass('condensed');
                $(
'.scrollup').removeClass('to-edge');
                $(
'.header-seperation').show();
                
//Bug fix - In high resolution screen it leaves a white margin
                
$('.header-seperation').css('height''61px');
                $(
'.footer-widget').show();
            } else {
                $(
'body').addClass('grey');
                $(
'#main-menu').addClass('mini');
                $(
'.page-content').addClass('condensed');
                $(
'.scrollup').addClass('to-edge');
                $(
'.header-seperation').hide();
                $(
'.footer-widget').hide();
                $(
'.main-menu-wrapper').scrollbar('destroy');
            }
        }
    });

    $(
'#horizontal-menu-toggle').click(function () {
        if($(
'body').hasClass('breakpoint-480') || $('body').hasClass('breakpoint-320') ){
            $(
'.bar').slideToggle(200"linear");
        }
    });
    
//***********************************END Main Menu Toggle *****************************    
    
    //***********************************BEGIN Slimscroller *****************************        
    
$('.scroller').each(function () {
        var 
= $(this).attr('data-height');
        $(
this).scrollbar({
            
ignoreMobile:true
        
});
        if(
!= null  || !=""){
            if($(
this).parent('.scroll-wrapper').length 0)
                $(
this).parent().css('max-height',h);
            else
                $(
this).css('max-height',h);
        }
    });
    
     $(
'.slim-scroller').each(function () {
        $(
this).slimScroll({
                
size'7px',
                
color'#a1b2bd',
                
height: $(this).attr("data-height"),
                
alwaysVisible: ($(this).attr("data-always-visible") == "1" true false),
                
railVisible: ($(this).attr("data-rail-visible") == "1" true false),
                
disableFadeOuttrue
        
});
    });    
    
//***********************************END Slimscroller *****************************    

    //***********************************BEGIN dropdow menu *****************************        
    
$('.dropdown-toggle').click(function () {
        $(
"img").trigger("unveil");
    });
    
//***********************************END dropdow menu *****************************    

    //***********************************BEGIN Global sparkline chart  *****************************       
    
if ($.fn.sparkline) {
        $(
'.sparklines').sparkline('html', {
            
enableTagOptionstrue
        
});
    }
    
//***********************************END Global sparkline chart  *****************************    

    //***********************************BEGIN Function calls *****************************    
    
$('table th .checkall').on('click', function () {
        if ($(
this).is(':checked')) {
            $(
this).closest('table').find(':checkbox').attr('checked'true);
            $(
this).closest('table').find('tr').addClass('row_selected');
            
//$(this).parent().parent().parent().toggleClass('row_selected');    
        
} else {
            $(
this).closest('table').find(':checkbox').attr('checked'false);
            $(
this).closest('table').find('tr').removeClass('row_selected');
        }
    });
    
//***********************************BEGIN Function calls *****************************    

    //***********************************BEGIN Function calls *****************************    
    
$('.animate-number').each(function () {
        $(
this).animateNumbers($(this).attr("data-value"), trueparseInt($(this).attr("data-animation-duration"), 10));
    });
    $(
'.animate-progress-bar').each(function () {
        $(
this).css('width', $(this).attr("data-percentage"));

    });
    
//***********************************BEGIN Function calls *****************************    

    //***********************************BEGIN Tiles Controller Options *****************************        


    
$('.widget-item > .controller .reload').click(function () {
        var 
el = $(this).parent().parent();
        
blockUI(el);
        
window.setTimeout(function () {
            
unblockUI(el);
        }, 
1000);
    });
    $(
'.widget-item > .controller .remove').click(function () {
        $(
this).parent().parent().parent().addClass('animated fadeOut');
        $(
this).parent().parent().parent().attr('id''id_remove_temp_id');
        
setTimeout(function () {
            $(
'#id_remove_temp_id').remove();
        }, 
400);
    });

    $(
'.tiles .controller .reload').click(function () {
        var 
el = $(this).parent().parent().parent();
        
blockUI(el);
        
window.setTimeout(function () {
            
unblockUI(el);
        }, 
1000);
    });
    $(
'.tiles .controller .remove').click(function () {
        $(
this).parent().parent().parent().parent().addClass('animated fadeOut');
        $(
this).parent().parent().parent().parent().attr('id''id_remove_temp_id');
        
setTimeout(function () {
            $(
'#id_remove_temp_id').remove();
        }, 
400);
    });
    if (!
jQuery().sortable) {
        return;
    }
    $(
".sortable").sortable({
        
connectWith'.sortable',
        
iframeFixfalse,
        
items'div.grid',
        
opacity0.8,
        
helper'original',
        
reverttrue,
        
forceHelperSizetrue,
        
placeholder'sortable-box-placeholder round-all',
        
forcePlaceholderSizetrue,
        
tolerance'pointer'
    
});
    
//***********************************BEGIN Function calls *****************************    

    //***********************************BEGIN Function calls *****************************    

    
$(window).resize(function () {
        
calculateHeight();
    });

    $(
window).scroll(function () {
        if ($(
this).scrollTop() > 100) {
            $(
'.scrollup').fadeIn();
        } else {
            $(
'.scrollup').fadeOut();
        }
    });
    
//***********************************BEGIN Function calls *****************************        
    
$('.scrollup').click(function () {
        $(
"html, body").animate({
            
scrollTop0
        
}, 700);
        return 
false;
    });
    $(
"img").unveil();
});
$(
window).resize(function () {
   
});

function 
calculateHeight() {
    var 
contentHeight parseInt($('.page-content').height(), 10);
}
    
function 
toggleMainMenu(){
    var 
timer;
    if($(
'body').hasClass('open-menu-left')){
        $(
'body').removeClass('open-menu-left');
        
timersetTimeout(function(){
            $(
'.page-sidebar').removeClass('visible');
        }, 
300);
        
    }
    else{
        
clearTimeout(timer);
        $(
'.page-sidebar').addClass('visible');
        
setTimeout(function(){
             $(
'body').addClass('open-menu-left');
        }, 
50);
       
    }
}
function 
toggleChat(){
         var 
timer;
         if($(
'body').hasClass('open-menu-right')){
            $(
'body').removeClass('open-menu-right');
            
timersetTimeout(function(){
                $(
'.chat-window-wrapper').removeClass('visible');
            }, 
300);
           
        }
        else{ 
            
clearTimeout(timer);
            $(
'.chat-window-wrapper').addClass('visible');
            $(
'body').addClass('open-menu-right');
        } 
}

$(
'body.open-menu-left .page-content').on('touchstart', function (e) {
    
alert("asd");
});
//******************************* Bind Functions Jquery- LAYOUT OPTIONS API ***************

(function ($) {
    
//Show/Hide Main Menu
    
$.fn.toggleMenu = function () {
        var 
windowWidth window.innerWidth;
        if(
windowWidth >768){
            $(
this).toggleClass('hide-sidebar');
        }
    };
    
//Condense Main Menu
    
$.fn.condensMenu = function () {
        var 
windowWidth window.innerWidth;
        if(
windowWidth >768){
            if ($(
this).hasClass('hide-sidebar')) $(this).toggleClass('hide-sidebar');

            $(
this).toggleClass('condense-menu');
            $(
this).find('#main-menu').toggleClass('mini');
        }
    };
    
//Toggle Fixed Menu Options
    
$.fn.toggleFixedMenu = function () {
        var 
windowWidth window.innerWidth;
        if(
windowWidth >768){
        $(
this).toggleClass('menu-non-fixed');
        }
    };

    $.
fn.toggleHeader = function () {
        $(
this).toggleClass('hide-top-content-header');
    };

    $.
fn.toggleChat = function () {
        
toggleChat();
    };
    $.
fn.layoutReset = function () {
        $(
this).removeClass('hide-sidebar');
        $(
this).removeClass('condense-menu');
        $(
this).removeClass('hide-top-content-header');
        if(!$(
'body').hasClass('extended-layout'))
        $(
this).find('#main-menu').removeClass('mini');
    };    

})(
jQuery);

function 
blockUI(el) {
    $(
el).block({
        
message'<div class="loading-animator"></div>',
        
css: {
            
border'none',
            
padding'2px',
            
backgroundColor'none'
        
},
        
overlayCSS: {
            
backgroundColor'#fff',
            
opacity0.3,
            
cursor'wait'
        
}
    });
}

// wrapper function to  un-block element(finish loading)
function unblockUI(el) {
    $(
el).unblock();
}
?>
Онлайн: 1
Реклама