edge cases: re-enable remember button when creating a new paste, refresh list and disble button upon memorizing the current paste

This commit is contained in:
El RIDO 2020-06-29 21:13:26 +02:00
parent ea93c474ea
commit 521f134638
No known key found for this signature in database
GPG key ID: 0F5C940A6BD81F92
3 changed files with 7 additions and 2 deletions

View file

@ -4411,6 +4411,10 @@ jQuery.PrivateBin = (function($, RawDeflate) {
}
const memory = db.transaction('pastes', 'readwrite').objectStore('pastes');
const request = memory.add(newPaste);
request.onsuccess = function(e) {
me.refreshList();
$('#rememberbutton').addClass('disabled');
}
return true;
};
@ -4796,6 +4800,7 @@ jQuery.PrivateBin = (function($, RawDeflate) {
// show new URL in browser bar
history.pushState({type: 'newpaste'}, document.title, url);
$('#rememberbutton').removeClass('disabled');
TopNav.showViewButtons();