Ticket #1581 (new defect)
IE9 Fix
| Reported by: | guest | Owned by: | gogo |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | Xinha Core | Version: | trunk |
| Severity: | major | Keywords: | |
| Cc: |
Description (last modified by gogo) (diff)
XinHaCore?.Js
1. approx line 1610
function noselect(e) {
if (e.tagName) {
e.unselectable = "on";
}
if (e.childNodes) {
var imax = e.childNodes.length;
for (var i = 0; i < imax; i += 1) {
if (e.tagName) {
noselect(e.childNodes[i]);
}
}
}
}
2.
approx Line 6284
Xinha._stopEvent = function(ev)
{
if (ev.preventDefault) { //add
ev.preventDefault();
}
if (ev.stopPropagation){ //add
ev.stopPropagation();
}
};
Change History
Note: See
TracTickets for help on using
tickets.
