This should fix the IE Cursor Issue #171
This commit is contained in:
parent
7a7869a602
commit
53bf7dc19d
1 changed files with 5 additions and 1 deletions
|
@ -3097,7 +3097,11 @@ function OUTER(gscope)
|
|||
// Such a div is what IE 6 creates naturally when you make a blank line
|
||||
// in a document of divs. However, when copy-and-pasted the div will
|
||||
// contain a space, so we note its emptiness with a property.
|
||||
lineElem.innerHTML = "";
|
||||
if(browser.version < 9) {
|
||||
lineElem.innerHTML = "";
|
||||
} else {
|
||||
lineElem.innerHTML = "<hr style=\"border:none; color:#fff; height:1px; display:none\"/>";
|
||||
}
|
||||
// a primitive-valued property survives copy-and-paste
|
||||
setAssoc(lineElem, "shouldBeEmpty", true);
|
||||
// an object property doesn't
|
||||
|
|
Loading…
Reference in a new issue