Fix clear all / select all buttons
This commit is contained in:
Родитель
054c116e09
Коммит
78fef2c25a
|
@ -286,11 +286,11 @@ class SW_Cache_Admin {
|
|||
});
|
||||
|
||||
jQuery('.wp-sw-cache-toggle-all').on('click', function() {
|
||||
jQuery('#files-list input[type="checkbox"]').prop('checked', 'checked');
|
||||
jQuery('.files-list input[type="checkbox"]').prop('checked', 'checked');
|
||||
});
|
||||
|
||||
jQuery('.wp-sw-cache-clear-all').on('click', function() {
|
||||
jQuery('#files-list input[type="checkbox"]').prop('checked', '');
|
||||
jQuery('.files-list input[type="checkbox"]').prop('checked', '');
|
||||
});
|
||||
|
||||
jQuery('.wp-sw-cache-clear-caches-button').on('click', function() {
|
||||
|
|
Загрузка…
Ссылка в новой задаче