Administrator
2023-03-31 0620759090646bf58a7e786c55cfe07ce1984e45
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
$(function() {
    $('#fullScreenBtn').click(function (e) { 
        e.preventDefault();
        fullScreen();
    });
    // $('.dialogs,.comments').ace_scroll({
    //     size: 300
    // });
    // $( "#ttt" ).on('click', function(e) {
    //     e.preventDefault();
    //     $( "#dialog-confirm" ).removeClass('hide').dialog({
    //         resizable: false,
    //         width: '320',
    //         modal: true,
    //         title: "<div class='widget-header'><h4 class='smaller'><i class='ace-icon fa fa-exclamation-triangle red'></i> Empty the recycle bin?</h4></div>",
    //         title_html: true,
    //         buttons: [
    //             {
    //                 html: "<i class='ace-icon fa fa-trash-o bigger-110'></i>&nbsp; Delete all items",
    //                 "class" : "btn btn-danger btn-minier",
    //                 click: function() {
    //                     $( this ).dialog( "close" );
    //                 }
    //             }
    //             ,
    //             {
    //                 html: "<i class='ace-icon fa fa-times bigger-110'></i>&nbsp; Cancel",
    //                 "class" : "btn btn-minier",
    //                 click: function() {
    //                     $( this ).dialog( "close" );
    //                 }
    //             }
    //         ]
    //     });
    // });
})
 
function navEvent() {
    var navList = $('#navList');
    $('a[href != "javascript:;"]', navList).click(function(event) {
        var index = $('a', navList).index($(this));
        var text = $(this).text();
        closableTab.addTab({
            'id': '_navA' + index,
            'name': text,
            'url': $(this).attr('href'),
            'closable': true
        });
        return false;
    });
    $('a:contains(分单管理)', navList).trigger('click');
}
 
$.widget("ui.dialog", $.extend({}, $.ui.dialog.prototype, {
    _title: function(title) {
        var $title = this.options.title || '&nbsp;'
        if( ("title_html" in this.options) && this.options.title_html == true )
            title.html($title);
        else title.text($title);
    }
}));