WebUI: Properly decode strings

This commit is contained in:
brvphoenix 2021-02-19 23:54:25 -08:00 committed by sledgehammer999
parent 27e222455b
commit 305316b1fc
No known key found for this signature in database
GPG key ID: 6E4A2D025B7CC9A2
7 changed files with 7 additions and 7 deletions

View file

@ -11,7 +11,7 @@
'use strict';
window.addEvent('domready', () => {
const paths = decodeURIComponent(new URI().getData('paths')).split('|');
const paths = new URI().getData('paths').split('|');
$('cancelBtn').focus();
$('cancelBtn').addEvent('click', (e) => {
new Event(e).stop();

View file

@ -11,7 +11,7 @@
'use strict';
window.addEvent('domready', () => {
const rules = decodeURIComponent(new URI().getData('rules')).split('|');
const rules = new URI().getData('rules').split('|');
$('cancelBtn').focus();
$('cancelBtn').addEvent('click', (e) => {

View file

@ -11,7 +11,7 @@
'use strict';
window.addEvent('domready', () => {
const rules = decodeURIComponent(new URI().getData('rules')).split('|');
const rules = new URI().getData('rules').split('|');
$('cancelBtn').focus();
$('cancelBtn').addEvent('click', (e) => {

View file

@ -30,7 +30,7 @@
}).activate();
window.addEvent('domready', () => {
$('feedURL').focus();
const path = decodeURIComponent(new URI().getData('path'));
const path = new URI().getData('path');
$('submitButton').addEvent('click', (e) => {
new Event(e).stop();
// check field

View file

@ -30,7 +30,7 @@
}).activate();
window.addEvent('domready', () => {
$('folderName').focus();
const path = decodeURIComponent(new URI().getData('path'));
const path = new URI().getData('path');
$('submitButton').addEvent('click', (e) => {
new Event(e).stop();
// check field

View file

@ -29,7 +29,7 @@
}
}).activate();
window.addEvent('domready', () => {
const oldPath = decodeURIComponent(new URI().getData('oldPath'));
const oldPath = new URI().getData('oldPath');
$('rename').value = oldPath;
$('rename').focus();

View file

@ -29,7 +29,7 @@
}
}).activate();
window.addEvent('domready', () => {
const oldName = decodeURIComponent(new URI().getData('rule'));
const oldName = new URI().getData('rule');
$('rename').value = oldName;
$('rename').focus();