Ignore:
Timestamp:
04/15/10 11:19:50 (14 years ago)
Author:
amuller
Message:

Ticket #1036 - Corrigindo js e otimizando a criação do jspack

Location:
trunk/phpgwapi/js/dJSWin
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/phpgwapi/js/dJSWin

    • Property svn:ignore set to
      *.jspack.js
  • trunk/phpgwapi/js/dJSWin/dJSWin.js

    r144 r2547  
    3737        { 
    3838                is_ie = false; 
    39                 is_ie5 = false 
     39                is_ie5 = false; 
    4040                is_moz1_6 = false; 
    4141                is_mozilla = false; 
     
    338338                /* Turn the attribute visible false */ 
    339339                this.visible = false; 
    340         } 
     340        }; 
    341341 
    342342        dJSWin.prototype.open = function() 
     
    368368                /* Turn the attribute visible true */ 
    369369                this.visible = true; 
    370         } 
     370        }; 
    371371 
    372372        dJSWin.prototype.show = function() 
    373373        { 
    374374                this.open(); 
    375         } 
     375        }; 
    376376 
    377377        dJSWin.prototype.hide = function() 
    378378        { 
    379379                this.close(); 
    380         } 
     380        }; 
    381381 
    382382        dJSWin.prototype.moveTo = function(x,y) 
    383383        { 
    384384                dd.elements[this.title.id].moveTo(x,y); 
    385         } 
     385        }; 
    386386 
    387387        dJSWin.prototype.x = function() 
    388388        { 
    389389                return dd.elements[this.title.id].x; 
    390         } 
     390        }; 
    391391 
    392392        dJSWin.prototype.y = function() 
    393393        { 
    394394                return dd.elements[this.title.id].y; 
    395         } 
     395        }; 
    396396 
    397397        dJSWin.prototype.draw = function() 
     
    464464                 
    465465                dd.elements[this.title.id].hide(); 
    466         } 
     466        }; 
    467467 
    468468        function _dJSWinElement(id) 
     
    480480                        throw("Browser Not Supported!"); 
    481481                } 
    482         } 
     482        }; 
    483483 
    484484        if (!dd.elements) 
Note: See TracChangeset for help on using the changeset viewer.