Changeset 4007:d08f9c5e38db for plugins
- Timestamp:
- 07/11/19 15:15:52 (6 years ago)
- Branch:
- default
- Location:
- plugins
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/aboutConfig/js/index.js
r3709 r4007 1 /*global $ */1 /*global $, dotclear */ 2 2 'use strict'; 3 3 … … 11 11 window.location = $('#ls_nav option:selected').val(); 12 12 }); 13 dotclear.responsiveCellHeaders(document.querySelector('table.settings'), 'table.settings', 0, true); 14 $('table.settings').addClass('rch rch-thead'); 13 15 }); -
plugins/antispam/js/antispam.js
r3987 r4007 31 31 return window.confirm(dotclear.msg.confirm_spam_delete); 32 32 }); 33 dotclear.responsiveCellHeaders(document.querySelector('#filters-list-form table'), '#filters-list-form table', 1, true); 33 34 }); -
plugins/pages/js/list.js
r3995 r4007 56 56 $('#pageslist td input[type=checkbox]').enableShiftClick(); 57 57 dotclear.condSubmit('#pageslist td input[type=checkbox]', '#form-entries #do-action'); 58 dotclear.responsiveCellHeaders(document.querySelector('#form-entries table'), '#form-entries table', 3, true); 58 59 59 60 $('#pageslist tr.line td:not(.expander)').mousedown(function() { -
plugins/simpleMenu/js/simplemenu.js
r3880 r4007 26 26 $('#menuitemslist tr td.handle').addClass('handler'); 27 27 dotclear.condSubmit('#menuitems tr td input[name^=items_selected]', '#menuitems #remove-action'); 28 dotclear.responsiveCellHeaders(document.querySelector('#menuitems table'), '#menuitems table', 2); 28 29 }); -
plugins/userPref/js/index.js
r3709 r4007 1 /*global $ */1 /*global $, dotclear */ 2 2 'use strict'; 3 3 … … 13 13 window.location = $('#lp_nav option:selected').val(); 14 14 }); 15 dotclear.responsiveCellHeaders(document.querySelector('table.prefs'), 'table.prefs', 0, true); 16 $('table.prefs').addClass('rch rch-thead'); 15 17 });
Note: See TracChangeset
for help on using the changeset viewer.