- Fix: Extension with no placement to be added to end;

for #326 (@sjernigan)
This commit is contained in:
Brett Zamir
2019-03-05 22:19:02 +08:00
parent d7b9cc6309
commit e524ae6174
10 changed files with 11 additions and 9 deletions

2
dist/index-es.js vendored
View File

@@ -32151,7 +32151,7 @@ editor.init = function () {
if ($$b(parent).children().eq(btn.position).length) {
$$b(parent).children().eq(btn.position).before(button);
} else {
$$b(parent).children().last().before(button);
$$b(parent).children().last().after(button);
}
} else {
button.appendTo(parent);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

2
dist/index-umd.js vendored
View File

@@ -32157,7 +32157,7 @@
if ($$b(parent).children().eq(btn.position).length) {
$$b(parent).children().eq(btn.position).before(button);
} else {
$$b(parent).children().last().before(button);
$$b(parent).children().last().after(button);
}
} else {
button.appendTo(parent);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long