[Web] Keep modal data when adding a sync job

master
andryyy 2020-02-06 07:03:03 +01:00
parent 049a930d47
commit 1abd0357d7
No known key found for this signature in database
GPG Key ID: 8EC34FF2794E25EF
1 changed files with 11 additions and 8 deletions

View File

@ -255,14 +255,17 @@ $(document).ready(function() {
}); });
if (unset === true) { if (unset === true) {
unset = null; unset = null;
$('form').formcache('clear'); // Keep form data for sync jobs
$('form').formcache('destroy'); if (id != "add_syncjob") {
var i = localStorage.length; $('form').formcache('clear');
while(i--) { $('form').formcache('destroy');
var key = localStorage.key(i); var i = localStorage.length;
if(/formcache/.test(key)) { while(i--) {
localStorage.removeItem(key); var key = localStorage.key(i);
} if(/formcache/.test(key)) {
localStorage.removeItem(key);
}
}
} }
} }
else { else {