Changeset 3445:26274861f3f6 for admin/js/common.js
- Timestamp:
- 12/07/16 17:12:43 (9 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/js/common.js
r3434 r3445 380 380 $(e).append(document.createTextNode(' ')); 381 381 382 $('<button class="checkbox-helper select-all">'+dotclear.msg.select_all+'</button>').click(function() {382 $('<button type="button" class="checkbox-helper select-all">'+dotclear.msg.select_all+'</button>').click(function() { 383 383 if (target !== undefined) { 384 384 target.check(); … … 393 393 $(e).append(document.createTextNode(' ')); 394 394 395 $('<button class="checkbox-helper select-none">'+dotclear.msg.no_selection+'</button>').click(function() {395 $('<button type="button" class="checkbox-helper select-none">'+dotclear.msg.no_selection+'</button>').click(function() { 396 396 if (target !== undefined) { 397 397 target.unCheck(); … … 406 406 $(e).append(document.createTextNode(' ')); 407 407 408 $('<button class="checkbox-helper select-reverse">'+dotclear.msg.invert_sel+'</button>').click(function() {408 $('<button type="button" class="checkbox-helper select-reverse">'+dotclear.msg.invert_sel+'</button>').click(function() { 409 409 if (target !== undefined) { 410 410 target.toggleCheck();
Note: See TracChangeset
for help on using the changeset viewer.