| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 | function $childNode(o) {    return window.frames[o]}function animationHover(o, e) {    o = $(o),    o.hover(function() {        o.addClass("animated " + e)    },    function() {        window.setTimeout(function() {            o.removeClass("animated " + e)        },        2e3)    })}function WinMove() {    var o = "[class*=col]",    e = ".ibox-title",    i = "[class*=col]";    $(o).sortable({        handle: e,        connectWith: i,        tolerance: "pointer",        forcePlaceholderSize: !0,        opacity: .8    }).disableSelection()}var $parentNode = window.parent.document;$(".modal").appendTo("body"), $(".collapse-link").click(function() {    var o = $(this).closest("div.ibox"),    e = $(this).find("i"),    i = o.find("div.ibox-content");    i.slideToggle(200),    e.toggleClass("fa-chevron-up").toggleClass("fa-chevron-down"),    o.toggleClass("").toggleClass("border-bottom"),    setTimeout(function() {        o.resize(),        o.find("[id^=map-]").resize()    },    50)}), $(".close-link").click(function() {    var o = $(this).closest("div.ibox");    o.remove()})
 |