File: /web/data/www.tbbprovision.com/static/manage/js/content.js
// var $parentNode = window.parent.document;
// function $childNode(name) {
//     return window.frames[name]
// }
// // tooltips
// $('.tooltip-demo').tooltip({
//     selector: "[data-toggle=tooltip]",
//     container: "body"
// });
// // 使用animation.css修改Bootstrap Modal
// $('.modal').appendTo("body");
// $("[data-toggle=popover]").popover();
//判断当前页面是否在iframe中
if (top == this) {
    var gohome = '<div class="gohome"><a class="animated bounceInUp" href="/admin/" title="返回首页"><i class="fa fa-home"></i></a></div>';
    $('body').append(gohome);
}
//animation.css
function animationHover(element, animation) {
    element = $(element);
    element.hover(
        function () {
            element.addClass('animated ' + animation);
        },
        function () {
            //动画完成之前移除class
            window.setTimeout(function () {
                element.removeClass('animated ' + animation);
            }, 2000);
        });
}
//拖动面板
function WinMove() {
    var element = "[class*=col]";
    var handle = ".ibox-title";
    var connect = "[class*=col]";
    $(element).sortable({
            handle: handle,
            connectWith: connect,
            tolerance: 'pointer',
            forcePlaceholderSize: true,
            opacity: 0.8
        })
        .disableSelection();
}
//后台获取错误提示信息
function errorMessage(str){
    return (typeof str=='undefined' || str=='') ? '网络繁忙,请重试' : str;
}