Bugfix. Description of bug at https://github.com/tm-linkwerk/ep_linebreak/blob/WR-72-linebreak-cursorverhalten/static/hooks.js#L94
parent
ee0368fd0f
commit
250afd0451
|
@ -1982,7 +1982,11 @@ function Ace2Inner(){
|
||||||
|
|
||||||
function nodeText(n)
|
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)
|
function getLineAndCharForPoint(point)
|
||||||
|
|
Loading…
Reference in New Issue