We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a7869a commit 53bf7dcCopy full SHA for 53bf7dc
static/js/ace2_inner.js
@@ -3097,7 +3097,11 @@ function OUTER(gscope)
3097
// Such a div is what IE 6 creates naturally when you make a blank line
3098
// in a document of divs. However, when copy-and-pasted the div will
3099
// contain a space, so we note its emptiness with a property.
3100
- lineElem.innerHTML = "";
+ if(browser.version < 9) {
3101
+ lineElem.innerHTML = "";
3102
+ } else {
3103
+ lineElem.innerHTML = "<hr style=\"border:none; color:#fff; height:1px; display:none\"/>";
3104
+ }
3105
// a primitive-valued property survives copy-and-paste
3106
setAssoc(lineElem, "shouldBeEmpty", true);
3107
// an object property doesn't
0 commit comments