From: Wilmer Ricciotti Date: Wed, 13 Jul 2011 15:16:40 +0000 (+0000) Subject: more keyboard events tests. X-Git-Tag: make_still_working~2382 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=33e69ace76c39b928f8c38a1130dc54fa2255889;p=helm.git more keyboard events tests. --- diff --git a/matitaB/matita/matitaweb.js b/matitaB/matita/matitaweb.js index a03858ae7..4b99a23a2 100644 --- a/matitaB/matita/matitaweb.js +++ b/matitaB/matita/matitaweb.js @@ -123,6 +123,26 @@ function keypress(e) if (match == '\\to') { unlocked.innerHTML = pre + "-> " + post; unlocked.focus(); + if (savedRange != null) { + if (window.getSelection)//non IE and there is already a selection + { + var s = window.getSelection(); + if (s.rangeCount > 0) + s.removeAllRanges(); + s.addRange(savedRange); + } + else + if (document.createRange)//non IE and no selection + { + window.getSelection().addRange(savedRange); + } + else + if (document.selection)//IE + { + savedRange.select(); + } + } + return suppressdefault(e,true); } else return suppressdefault(e,false); @@ -618,19 +638,21 @@ function removeElement(id) { element.parentNode.removeChild(element); } +var savedRange; + function getCursorPos() { var cursorPos; if (window.getSelection) { var selObj = window.getSelection(); - var selRange = selObj.getRangeAt(0); + savedRange = selObj.getRangeAt(0); //cursorPos = findNode(selObj.anchorNode.parentNode.childNodes, selObj.anchorNode) + selObj.anchorOffset; cursorPos = findNode(unlocked.childNodes, selObj.anchorNode,0) + selObj.anchorOffset; /* FIXME the following works wrong in Opera when the document is longer than 32767 chars */ return(cursorPos); } else if (document.selection) { - var range = document.selection.createRange(); - var bookmark = range.getBookmark(); + savedRange = document.selection.createRange(); + var bookmark = savedRange.getBookmark(); /* FIXME the following works wrong when the document is longer than 65535 chars */ cursorPos = bookmark.charCodeAt(2) - 11; /* Undocumented function [3] */ return(cursorPos);