X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/ce24094b892d3fb0faf000b5e2bf64f58ce4aae5..724c4850eb0d7e4001ad1461e027d66339b9e525:/modules/documentCanvas/canvas/canvas.js?ds=sidebyside diff --git a/modules/documentCanvas/canvas/canvas.js b/modules/documentCanvas/canvas/canvas.js index 0d92d55..76eddb1 100644 --- a/modules/documentCanvas/canvas/canvas.js +++ b/modules/documentCanvas/canvas/canvas.js @@ -197,18 +197,7 @@ $.extend(Canvas.prototype, { this.publisher('currentElementChanged', element); } }.bind(this); - var _moveCaretToTextElement = function(element, where) { - var range = document.createRange(); - range.selectNodeContents(element.dom().contents()[0]); - - var collapseArg = true; - if(where === 'end') - collapseArg = false; - range.collapse(collapseArg); - var selection = document.getSelection(); - selection.removeAllRanges(); - selection.addRange(range); - }; + var isTextElement = element instanceof documentElement.DocumentTextElement, textElementToLand = isTextElement ? element : findFirstDirectTextChild(element), @@ -219,11 +208,12 @@ $.extend(Canvas.prototype, { if(currentTextElement && !(currentTextElement.sameNode(textElementToLand))) this.wrapper.find('.current-text-element').removeClass('current-text-element'); - if(textElementToLand && !(textElementToLand.sameNode(currentTextElement))) { + if(textElementToLand) { _markAsCurrent(textElementToLand); - if(params.caretTo) - _moveCaretToTextElement(textElementToLand, params.caretTo); // as method on element? - this.publisher('currentTextElementSet', element); + if(params.caretTo || !textElementToLand.sameNode(this.getCursor().getPosition().element)) + this._moveCaretToTextElement(textElementToLand, params.caretTo); // as method on element? + if(!(textElementToLand.sameNode(currentTextElement))) + this.publisher('currentTextElementSet', element); } if(!(currentNodeElement && currentNodeElement.sameNode(nodeElementToLand))) { @@ -232,8 +222,34 @@ $.extend(Canvas.prototype, { document.getSelection().removeAllRanges(); this.publisher('currentNodeElementSet', nodeElementToLand); } - } + }, + + _moveCaretToTextElement: function(element, where) { + var range = document.createRange(), + node = element.dom().contents()[0]; + + if(typeof where !== 'number') { + range.selectNodeContents(node); + } else { + range.setStart(node, where); + } + + var collapseArg = true; + if(where === 'end') + collapseArg = false; + range.collapse(collapseArg); + + var selection = document.getSelection(); + selection.removeAllRanges(); + selection.addRange(range); + this.wrapper.focus(); // FF requires this for caret to be put where range colllapses, Chrome doesn't. + }, + + setCursorPosition: function(position) { + if(position.element) + this._moveCaretToTextElement(position.element, position.offset); + } }); $.extend(Canvas.prototype.list, {