mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-12 07:48:04 +00:00
WebUI: Properly decode strings
This commit is contained in:
parent
529dd6e3a8
commit
59f0961594
@ -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();
|
||||
|
@ -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) => {
|
||||
|
@ -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) => {
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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();
|
||||
|
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user