Changeset 1495 for plugins/cleanConfig
- Timestamp:
- 09/24/09 20:15:40 (14 years ago)
- Location:
- plugins/cleanConfig
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/cleanConfig/_define.php
r693 r1495 28 28 /* Description*/ "Clean blog and global settings and versions", 29 29 /* Author */ "Moe (http://gniark.net/)", 30 /* Version */ '1.3 ',30 /* Version */ '1.3.1', 31 31 /* Permissions */ null 32 32 ); -
plugins/cleanConfig/index.php
r693 r1495 87 87 $(document).ready(function() { 88 88 $('.checkboxes-helpers').each(function() { 89 dotclear.checkboxesHelpers(this);89 dotclear.checkboxesHelpers(this); 90 90 }); 91 $('input[ @name="delete"]').click(function() {91 $('input[name="delete"]').click(function() { 92 92 return window.confirm(dotclear.msg.confirm_cleanconfig_delete); 93 93 }); 94 $('input[ @name="delete_versions"]').click(function() {94 $('input[name="delete_versions"]').click(function() { 95 95 return window.confirm(dotclear.msg.confirm_cleanconfig_delete_versions); 96 96 }); 97 $('td[ @class="ns-name"]').css({ cursor:"pointer" });98 $('td[ @class="ns-name"]').click(function() {97 $('td[class="ns-name"]').css({ cursor:"pointer" }); 98 $('td[class="ns-name"]').click(function() { 99 99 $("."+$(this).children().filter("strong").text()).toggleCheck(); 100 100 return false;
Note: See TracChangeset
for help on using the changeset viewer.