mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-19 14:13:34 +01:00
Bugfix. Description of bug at https://github.com/tm-linkwerk/ep_linebreak/blob/WR-72-linebreak-cursorverhalten/static/hooks.js#L94
This commit is contained in:
parent
ee0368fd0f
commit
250afd0451
1 changed files with 5 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue