Files
typecho/admin/table-js.php
2013-11-24 23:35:44 +08:00

19 lines
533 B
PHP

<?php if(!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<script>
(function () {
$(document).ready(function () {
$('.typecho-list-table').tableSelectable({
checkEl : 'input[type=checkbox]',
rowEl : 'tr',
selectAllEl : '.typecho-table-select-all',
actionEl : '.dropdown-menu a'
});
$('.btn-drop').dropdownMenu({
btnEl : '.dropdown-toggle',
menuEl : '.dropdown-menu'
});
});
})();
</script>