Skip to content
Snippets Groups Projects
Commit 26ca57c0 authored by svornost's avatar svornost
Browse files

Remove unused parameter and make the search pattern global.

parent 6a78c6fc
No related branches found
No related tags found
1 merge request!8736Fixes
......@@ -37,7 +37,7 @@ App.Art.cacheArtData = function() {
App.Data.Art.VectorRevamp = makeCache(document.querySelectorAll('[tags="Twine.image"][name^="Art_Vector_Revamp"]'));
};
App.Art.URLIDMatcher = /url\(#(.*)\)/;
App.Art.URLIDMatcher = /url\(#(.*)\)/g;
App.Art.SvgQueue = class {
/**
* @param {{trigger:string, action:string, value:string}[]} transformRules - when a 'data-transform' attribute with value "trigger" is seen on an element, perform 'action' with 'value'
......@@ -119,9 +119,8 @@ App.Art.SvgQueue = class {
/** add an SVG from the cache to the render queue
* @param {string} id
* @param {number} [rndID] - optional unique ID which identifies this specific art instance to make internal defs link correctly
*/
add(id, rndID) {
add(id) {
const res = this._cache.get(id);
let clones = [];
if (!res) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment