18 lines
481 B
PHP
18 lines
481 B
PHP
<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>
|