Stefan Mintert 2015-05-07 16:47:14 +02:00
parent ee0368fd0f
commit 250afd0451
1 changed files with 5 additions and 1 deletions

View File

@ -1982,7 +1982,11 @@ function Ace2Inner(){
function nodeText(n)
{
return n.innerText || n.textContent || n.nodeValue || '';
if (browser.msie) {
return n.innerText;
} else {
return n.textContent || n.nodeValue || '';
}
}
function getLineAndCharForPoint(point)