Changeset 445

Show
Ignore:
Timestamp:
01/06/08 13:13:51 (12 months ago)
Author:
padams
Message:

added fix for IE& handling of onclick events.
cleaned up a comment.

Location:
trunk/modules/base/templates
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/modules/base/templates/js_logger.tpl

    r395 r445  
    5151 
    5252/** 
    53  * Helper function for setting properties o nthe cick object 
     53 * Helper function for setting properties on the click object 
    5454 * 
    5555 * Takes a DOM event object 
     
    5858 */ 
    5959function owa_setClick(e) { 
     60 
     61        // hack for IE7 
     62        e = e || window.event; 
    6063 
    6164        owa_click.setProperties(e); 
  • trunk/modules/base/templates/js_log_lib.tpl

    r409 r445  
    248248         setProperties : function(e) { 
    249249                 
    250          
    251250                this.e = e; 
    252251            this.properties["event"] = "base.click";