should be clean enough to push

This commit is contained in:
John McLear 2015-12-23 14:35:52 +00:00
parent b519f9f156
commit 34a46d6318
4 changed files with 16 additions and 4 deletions

View file

@ -5006,8 +5006,14 @@ function Ace2Inner(){
});
})
/*
$(root).on("dragend", function(e){
top.console.log("dragend");
});
$(root).on("drop", function(e){
top.console.log("DROP");
if(e.target.a || e.target.localName === "a"){
e.preventDefault();
}
@ -5020,7 +5026,7 @@ function Ace2Inner(){
e: e
});
});
*/
// CompositionEvent is not implemented below IE version 8
if ( !(browser.msie && parseInt(browser.version <= 9)) && document.documentElement)
@ -5444,6 +5450,7 @@ function Ace2Inner(){
lineNumbersShown++;
var n = lineNumbersShown;
var div = odoc.createElement("DIV");
//calculate height for new line number
if(b){
var h = (b.clientHeight || b.offsetHeight);