run tests after update

This commit is contained in:
JFH
2020-07-25 19:57:19 +02:00
parent bb5cb2c955
commit 630a76c1b6
15 changed files with 38 additions and 43 deletions

View File

@@ -4829,7 +4829,7 @@
}, 9, null).singleNodeValue;
} : function (id) {
// jQuery lookup: twice as slow as xpath in FF
return $$1(svgroot_).find('[id=' + id + ']')[0];
return $$1(svgroot_).find(`[id=${id}]`)[0];
};
/**
* Assigns multiple attributes to an element.
@@ -5724,7 +5724,6 @@
* @implements {module:history.HistoryCommand}
*/
class MoveElementCommand extends Command {
/**
* @param {Element} elem - The DOM element that was moved
@@ -6054,7 +6053,7 @@
unapply(handler) {
super.unapply(handler, () => {
this.stack.forEach(stackItem => {
this.stack.reverse().forEach(stackItem => {
console.assert(stackItem, 'stack item should not be null');
stackItem && stackItem.unapply(handler);
});
@@ -6285,6 +6284,7 @@
var hstry = /*#__PURE__*/Object.freeze({
__proto__: null,
HistoryEventTypes: HistoryEventTypes,
Command: Command,
MoveElementCommand: MoveElementCommand,
InsertElementCommand: InsertElementCommand,
RemoveElementCommand: RemoveElementCommand,
@@ -12956,7 +12956,7 @@
const getSelectorManager = () => selectorManager_;
/* eslint-disable indent, unicorn/no-fn-reference-in-iterator */
/* eslint-disable indent */
let $$a = jQueryPluginSVG(jQuery);
const {
MoveElementCommand: MoveElementCommand$1,
@@ -27224,7 +27224,7 @@
return $;
};
/* eslint-disable unicorn/no-fn-reference-in-iterator */
/* globals jQuery */
const $$b = jQuery;
let langParam;
/**