Changeset 60

Show
Ignore:
Timestamp:
29/08/06 21:31:50 (2 years ago)
Author:
al
Message:

disable event system to prevent any conflicts

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plotkit/trunk/PlotKit/Canvas.js

    r54 r60  
    132132 
    133133    // load event system if we have Signals 
     134    /* Disabled until we have a proper implementation 
    134135    try { 
    135136        this.event_isinside = null; 
     
    141142        // still experimental 
    142143    } 
     144    */ 
    143145}; 
    144146 
  • plotkit/trunk/PlotKit/PlotKit_Packed.js

    r58 r60  
    833833this.area={x:this.options.padding.left,y:this.options.padding.top,w:this.width-this.options.padding.left-this.options.padding.right,h:this.height-this.options.padding.top-this.options.padding.bottom}; 
    834834MochiKit.DOM.updateNodeAttributes(this.container,{"style":{"position":"relative","width":this.width+"px"}}); 
    835 try{ 
    836 this.event_isinside=null; 
    837 if(MochiKit.Signal&&this.options.enableEvents){ 
    838 this._initialiseEvents(); 
    839 } 
    840 } 
    841 catch(e){ 
    842 } 
    843835}; 
    844836PlotKit.CanvasRenderer.prototype.render=function(){