Ticket #977 (closed defect: invalid)
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
Note: See
TracTickets for help on using
tickets.