| 1 |
<?php |
| 2 |
function wp_insert_admin_styles() { |
| 3 |
wp_enqueue_style('wp-insert-styles', WP_INSERT_URL.'/includes/common/css/style.css', false); |
| 4 |
wp_enqueue_style('thickbox'); |
| 5 |
wp_enqueue_script('common'); |
| 6 |
wp_enqueue_script('jquery-ui-tabs'); |
| 7 |
wp_enqueue_script('wp-lists'); |
| 8 |
wp_enqueue_script('postbox'); |
| 9 |
wp_enqueue_script('media-upload'); |
| 10 |
wp_enqueue_script('thickbox'); |
| 11 |
wp_enqueue_script('colorbox', WP_INSERT_URL.'/includes/common/js/jquery.colorbox-min.js', array('jquery')); |
| 12 |
wp_enqueue_script('better-checkboxes', WP_INSERT_URL.'/includes/common/js/jquery.tzCheckbox.js', array('jquery')); |
| 13 |
wp_enqueue_script('iphone-checkboxes', WP_INSERT_URL.'/includes/common/js/iphone-style-checkboxes.js', array('jquery')); |
| 14 |
wp_enqueue_script('jquery-vertical-tabs', WP_INSERT_URL.'/includes/common/js/jquery-jvert-tabs-1.1.4.js', array('jquery')); |
| 15 |
wp_enqueue_script('nicEdit', WP_INSERT_URL.'/includes/common/js/nicEdit-latest.js', array('jquery')); |
| 16 |
wp_enqueue_script('image-uploader', WP_INSERT_URL.'/includes/common/js/wp-insert-functions.js', array('jquery')); |
| 17 |
} |
| 18 |
?> |