table-js.php 627 B

12345678910111213141516171819
  1. <?php if(!defined('__TYPECHO_ADMIN__')) exit; ?>
  2. <script src="<?php $options->adminStaticUrl('js', 'purify.js'); ?>"></script>
  3. <script>
  4. (function () {
  5. $(document).ready(function () {
  6. $('.typecho-list-table').tableSelectable({
  7. checkEl : 'input[type=checkbox]',
  8. rowEl : 'tr',
  9. selectAllEl : '.typecho-table-select-all',
  10. actionEl : '.dropdown-menu a,button.btn-operate'
  11. });
  12. $('.btn-drop').dropdownMenu({
  13. btnEl : '.dropdown-toggle',
  14. menuEl : '.dropdown-menu'
  15. });
  16. });
  17. })();
  18. </script>