in partnership with mediatemple

Ticket #977 (closed defect: invalid)

Opened 3 weeks ago

Last modified 3 weeks ago

function $body(el) problems in IE

Reported by: vm Owned by:
Type: defect Priority: blocker
Milestone: Mootools version 1.2 Component: Core
Keywords: body tagname Cc:

Description

I am not sure if this is only ReMooz? problem but function $body(el) causes it to not open image. Here is a quickfix that works but is probably pretty dumb:

function $body(el){

if (Browser.Engine.trident && !el.tagName) {

return true;

} else {

return el.tagName.toLowerCase() == 'body';

}

};

Change History

Changed 3 weeks ago by kamicane

  • status changed from new to closed
  • resolution set to invalid
Note: See TracTickets for help on using tickets.