Changeset 30

Show
Ignore:
Timestamp:
12/05/05 17:11:37 (3 years ago)
Author:
Jan-Klaas Kollhof
Message:

bug in dom module's EventListener? fixed

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/jsolait/lib/dom.js

    r21 r30  
    9696        **/ 
    9797        publ.handleEvent=function(evt){ 
    98             if(this[evt.type]){ 
     98            if(this['handleEvent_' +evt.type]){ 
    9999                this['handleEvent_' + evt.type](evt); 
    100100            } 
  • trunk/jsolait/lib/iter.js

    r23 r30  
    353353        } 
    354354 
    355         print("for in  on as.Array \t" + testing.profile(function(){ 
     355        print("for in  on assoc. Array \t" + testing.profile(function(){ 
    356356            var s=''; 
    357357            for(var i in r){