source: sandbox/filemanager/js/global.js @ 1803

Revision 1803, 682 bytes checked in by fpcorrea, 15 years ago (diff)

Ticket #597 - Melhorias no módulo Gerenciador de Arquivos

RevLine 
[1556]1var title_app = '<table height="16px" border=0 width=100% cellspacing=0 cellpadding=2>'+
[1627]2'<tr class="divAppboxHeader">'+
[1556]3'<td style="padding-left:17px" width=33% id="content_quota" align=left></td>'+
[1627]4'<td width=33% id="main_title">Expresso FileManager</td>'+
[1556]5'<td width=33% id="div_menu_c3" align=right></td>'+
6'</tr></table>';
7
[1719]8var currentPath = "";
[1803]9var oldValue;
[1719]10
[1748]11var templatePath = './filemanager/templates/default/';
[1719]12
13var menuTimeout;
14var DocX,DocY;
15var criteria='name';
16var order_type = '1'; // Ascending is 1, descending is 0
17
18// Store permissions of current path use it BUT DO NOT rely on it
19var permissions = new Array();
20var preferences = new Array();
[1791]21
22var KEY_ENTER = 13;
Note: See TracBrowser for help on using the repository browser.