Change last updated text on success

This commit is contained in:
billz
2020-04-02 08:12:59 +01:00
parent 86133c80ff
commit 4eb6a5a2f7
2 changed files with 8 additions and 5 deletions

View File

@@ -291,9 +291,9 @@ function loadChannelSelect(selected) {
});
}
/* Updates the selected ad blocklist
* Request is passed to an ajax handler to download the associated list
*
/* Updates the selected blocklist
* Request is passed to an ajax handler to download the associated list.
* Interface elements are updated to indicate current progress, status.
*/
function updateBlocklist() {
var blocklist_id = $('#cbxblocklist').val();
@@ -305,6 +305,7 @@ function updateBlocklist() {
if (jsonData['return'] == '0') {
$('#cbxblocklist-status').find('i').removeClass('fas fa-cog fa-spin').addClass('fas fa-check');
$('#cbxblocklist-status').removeClass('check-progress').addClass('check-updated').delay(500).animate({ opacity: 1 }, 700);
$('#'+blocklist_id).text("Just now");
}
})
}