Ignore:
Timestamp:
07/31/12 15:11:44 (12 years ago)
Author:
gustavo
Message:

Ticket #2953 - Melhorar a disposicao da listagem de anexos

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sandbox/2.4.2-expresso2/expressoMail1_2/js/main.js

    r6890 r6918  
    22312231                            adjust: { 
    22322232                               resize: true, 
    2233                                scroll: true 
     2233                               scroll: true, 
     2234                               screen: show 
    22342235                            } 
    22352236                        }, 
     
    22442245                                radius: 5 
    22452246                            }, 
     2247                            width: { 
     2248                                                                 min: 75, 
     2249                                                                 max : 1000 
     2250                                                        }, 
    22462251                            padding: 3,  
    22472252                            textAlign: 'left', 
     
    23152320                            adjust: { 
    23162321                               resize: true, 
    2317                                scroll: true 
     2322                               scroll: true, 
     2323                               screen: show 
    23182324                            } 
    23192325                        }, 
     
    23282334                                radius: 5 
    23292335                            }, 
     2336                            width: { 
     2337                                                                 min: 75, 
     2338                                                                 max : 1000 
     2339                                                        }, 
    23302340                            padding: 3,  
    23312341                            textAlign: 'left', 
     
    24102420                        adjust: { 
    24112421                           resize: true, 
    2412                            scroll: true 
     2422                           scroll: true, 
     2423                           screen: show 
    24132424                        } 
    24142425                    }, 
     
    24232434                            radius: 5 
    24242435                        }, 
     2436                        width: { 
     2437                                                         min: 75, 
     2438                                                         max : 1000 
     2439                                                }, 
    24252440                        padding: 3,  
    24262441                        textAlign: 'left', 
     
    42784293 
    42794294function create_new_folder(name_folder, base_path){ 
     4295        //Limit reached folders 
     4296        if(preferences.imap_max_folders){ 
     4297                if(cp_tree1.length == parseInt(preferences.imap_max_folders)){ 
     4298                        $(".folders-loading").removeClass("folders-loading"); 
     4299                        cExecute("$this.imap_functions.get_folders_list&onload=true", update_menu); 
     4300                        return write_msg(get_lang("Limit reached folders")); 
     4301                } 
     4302        } 
     4303         
    42804304        $.ajax({ 
    42814305                url : "controller.php?action=$this.imap_functions.create_mailbox", 
Note: See TracChangeset for help on using the changeset viewer.