Changeset 2746


Ignore:
Timestamp:
05/10/10 09:27:24 (14 years ago)
Author:
rodsouza
Message:

Ticket #1058 - Corrigindo problema que não permitia o carregmento do filemanager.

Location:
trunk/filemanager/js/jscode
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/filemanager/js/jscode/connector.js

    r2610 r2746  
    256256                return data; 
    257257        } 
    258         unserialized = f(str); 
     258        unserialized = f(str.trim( )); 
    259259        return unserialized; 
    260260} 
  • trunk/filemanager/js/jscode/draw_api.js

    r2630 r2746  
    404404var folderList = new folderList(); 
    405405 
    406 function toolbar() 
     406function _toolbar() 
    407407{ 
    408408        var element; 
    409409} 
    410 toolbar.prototype.clear = function (){ 
     410_toolbar.prototype.clear = function (){ 
    411411        this.element.innerHTML = ""; 
    412412} 
    413 toolbar.prototype.load = function (){ 
     413_toolbar.prototype.load = function (){ 
    414414        this.element = document.getElementById('fmMenu'); 
    415415        if (permissions['read'] == 0){ 
     
    433433 
    434434} 
    435 toolbar.prototype.getCheckedFiles = function () { 
     435_toolbar.prototype.getCheckedFiles = function () { 
    436436        filesUrl = ""; 
    437437        var one_checked = false; 
     
    451451        return filesUrl; 
    452452} 
    453 toolbar.prototype.control = function (arg) 
     453_toolbar.prototype.control = function (arg) 
    454454{ 
    455455        //Used to get button position 
     
    578578        } 
    579579} 
    580 var toolbar = new toolbar(); 
     580var toolbar = new _toolbar(); 
    581581 
    582582function unarchive(filename){ 
Note: See TracChangeset for help on using the changeset viewer.