Fix clear all / select all buttons

This commit is contained in:
David Walsh 2016-02-24 16:56:36 -06:00
Родитель 054c116e09
Коммит 78fef2c25a
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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() {