Skip to content

Commit

Permalink
Merge branch '2017.12' into 2018.09
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuszbieniek committed Jan 8, 2019
2 parents e3256eb + a668857 commit f1eaaa1
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 19 deletions.
Expand Up @@ -876,12 +876,11 @@

try {
s.removeAllRanges();
s.addRange(r);
} catch (ex) {
// IE9 might throw errors here don't know why
// IE might throw errors here if the editor is within a hidden container and selection is changed
}

s.addRange(r);


// Forward is set to false and we have an extend function
if (forward === false && s.extend) {
s.collapse(r.endContainer, r.endOffset);
Expand Down
2 changes: 1 addition & 1 deletion extension/ezoe/design/standard/javascript/tiny_mce.js

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Expand Up @@ -8831,12 +8831,11 @@ tinymce.dom.TreeWalker = function(start_node, root_node) {

try {
s.removeAllRanges();
s.addRange(r);
} catch (ex) {
// IE9 might throw errors here don't know why
// IE might throw errors here if the editor is within a hidden container and selection is changed
}

s.addRange(r);


// Forward is set to false and we have an extend function
if (forward === false && s.extend) {
s.collapse(r.endContainer, r.endOffset);
Expand Down

Large diffs are not rendered by default.

Expand Up @@ -10077,12 +10077,11 @@ window.tinymce.dom.Sizzle = Sizzle;

try {
s.removeAllRanges();
s.addRange(r);
} catch (ex) {
// IE9 might throw errors here don't know why
// IE might throw errors here if the editor is within a hidden container and selection is changed
}

s.addRange(r);


// Forward is set to false and we have an extend function
if (forward === false && s.extend) {
s.collapse(r.endContainer, r.endOffset);
Expand Down
7 changes: 3 additions & 4 deletions extension/ezoe/design/standard/javascript/tiny_mce_src.js
Expand Up @@ -10050,12 +10050,11 @@ window.tinymce.dom.Sizzle = Sizzle;

try {
s.removeAllRanges();
s.addRange(r);
} catch (ex) {
// IE9 might throw errors here don't know why
// IE might throw errors here if the editor is within a hidden container and selection is changed
}

s.addRange(r);


// Forward is set to false and we have an extend function
if (forward === false && s.extend) {
s.collapse(r.endContainer, r.endOffset);
Expand Down

0 comments on commit f1eaaa1

Please sign in to comment.