- Testing: Skip js errors in Testcafe; we're getting some uncaught

error despite not replicating manually; should file a Testcafe issue
- Build: Update
- npm: Update devDeps
This commit is contained in:
Brett Zamir
2019-04-03 17:05:18 +08:00
parent 1c30c42105
commit 6d2794beb4
77 changed files with 409 additions and 397 deletions

View File

@@ -137,7 +137,7 @@ var svgEditorExtension_placemark = (function () {
var markerName = 'marker-start';
var marker = getLinked(el, markerName);
if (!marker || !marker.attributes.class) {
if (!marker || !marker.attributes["class"]) {
return;
} // not created by this extension
@@ -165,7 +165,7 @@ var svgEditorExtension_placemark = (function () {
return;
}
if (!marker.attributes.class) {
if (!marker.attributes["class"]) {
return;
} // not created by this extension
@@ -252,7 +252,7 @@ var svgEditorExtension_placemark = (function () {
markerUnits: 'strokeWidth',
orient: 'auto',
style: 'pointer-events:none',
class: seType
"class": seType
}
});
var mel = addElem(markerTypes[seType]);
@@ -557,7 +557,7 @@ var svgEditorExtension_placemark = (function () {
element: 'g',
attr: {
id: id,
class: 'placemark',
"class": 'placemark',
fontSize: fontSize,
maxlen: maxlen,
lines: items.length,

View File

@@ -3910,7 +3910,7 @@ var svgEditorExtension_server_moinsave = (function () {
// eslint-disable-line promise/prefer-await-to-then, promise/always-return
_this20.img = img;
_this20.loaded = true;
}).catch(function (err) {
})["catch"](function (err) {
// eslint-disable-line promise/prefer-await-to-callbacks
_this20.erred = true;
console.error('Ajax error for canvg', err); // eslint-disable-line no-console

View File

@@ -3910,7 +3910,7 @@ var svgEditorExtension_server_opensave = (function () {
// eslint-disable-line promise/prefer-await-to-then, promise/always-return
_this20.img = img;
_this20.loaded = true;
}).catch(function (err) {
})["catch"](function (err) {
// eslint-disable-line promise/prefer-await-to-callbacks
_this20.erred = true;
console.error('Ajax error for canvg', err); // eslint-disable-line no-console

View File

@@ -962,7 +962,7 @@
}
var getConstructor = function getConstructor(cb) {
var baseClass = options && options.extends ? doc.createElement(options.extends).constructor : customizedBuiltIn ? doc.createElement(localName).constructor : HTMLElement;
var baseClass = options && options["extends"] ? doc.createElement(options["extends"]).constructor : customizedBuiltIn ? doc.createElement(localName).constructor : HTMLElement;
return cb ?
/*#__PURE__*/
function (_baseClass) {
@@ -1007,7 +1007,7 @@
if (typeof options === 'string') {
options = {
extends: options
"extends": options
};
} else if (!options.hasOwnProperty('extends')) {
prototype = options;
@@ -1026,7 +1026,7 @@
if (typeof options === 'string') {
options = {
extends: options
"extends": options
};
}
}
@@ -1043,7 +1043,7 @@
if (!options && customizedBuiltIn) {
options = {
extends: localName
"extends": localName
};
}
@@ -1068,7 +1068,7 @@
var funcBound = func.bind(elem);
if (typeof symbol === 'string') {
elem[Symbol.for(symbol)] = funcBound;
elem[Symbol["for"](symbol)] = funcBound;
} else {
elem[symbol] = funcBound;
}
@@ -1077,7 +1077,7 @@
obj.elem = elem;
if (typeof symbol === 'string') {
elem[Symbol.for(symbol)] = obj;
elem[Symbol["for"](symbol)] = obj;
} else {
elem[symbol] = obj;
}
@@ -2212,9 +2212,9 @@
return [map, elem];
};
jml.symbol = jml.sym = jml.for = function (elem, sym) {
jml.symbol = jml.sym = jml["for"] = function (elem, sym) {
elem = typeof elem === 'string' ? $(elem) : elem;
return elem[_typeof$1(sym) === 'symbol' ? sym : Symbol.for(sym)];
return elem[_typeof$1(sym) === 'symbol' ? sym : Symbol["for"](sym)];
};
jml.command = function (elem, symOrMap, methodName) {
@@ -3271,7 +3271,7 @@
}
}, [// Todo: i18nize
['fieldset', [['legend', ['Search terms']], ['div', {
class: 'control'
"class": 'control'
}, [['label', ['Query (Title, description, uploader, or tag): ', ['input', {
id: 'query',
name: 'query',
@@ -3288,7 +3288,7 @@
}
}
}]]]]], ['br'], ' OR ', ['br'], ['div', {
class: 'control'
"class": 'control'
}, [['label', ['IDs (single or comma-separated): ', ['input', {
id: 'byids',
name: 'ids',
@@ -3305,7 +3305,7 @@
}
}
}]]]]]]], ['fieldset', [['legend', ['Configuring results']], ['div', {
class: 'control'
"class": 'control'
}, [['label', ['Sort by: ', ['select', {
id: 'sort'
}, [// Todo: i18nize first values
@@ -3319,7 +3319,7 @@
value: value
}, [text]];
})]]]]], ['div', {
class: 'control'
"class": 'control'
}, [['label', ['Results per page: ', ['input', {
id: 'amount',
name: 'amount',
@@ -3330,7 +3330,7 @@
step: 1,
pattern: '\\d+'
}]]]]], ['div', {
class: 'control'
"class": 'control'
}, [['label', ['Page number: ', ['input', {
// max: 1, // We'll change this based on available results
id: 'page',
@@ -3342,7 +3342,7 @@
step: 1,
pattern: '\\d+'
}]]]]]]], ['div', {
class: 'control'
"class": 'control'
}, [['input', {
type: 'submit'
}]]]]], ['div', {