diff --git a/editor/svg-editor.js b/editor/svg-editor.js index 6a6fb606..aefb4925 100644 --- a/editor/svg-editor.js +++ b/editor/svg-editor.js @@ -487,7 +487,7 @@ TODOS } ); - editor.setConfig(urldata, {overwrite: false}); // Note: source, url, and paramurl (as with storagePrompt later) are not set on config but are used below + editor.setConfig(urldata, {overwrite: false}); // Note: source and url (as with storagePrompt later) are not set on config but are used below setupCurConfig(); @@ -507,11 +507,6 @@ TODOS } return; } - if (qstr.indexOf('paramurl=') !== -1) { - // Get parameter URL (use full length of remaining location.href) - editor.loadFromURL(qstr.substr(9)); - return; - } if (urldata.url) { editor.loadFromURL(urldata.url); return;