admin_pages/registrations/Registrations_Admin_Page.core.php 1 location
|
@@ 749-758 (lines=10) @@
|
| 746 |
|
} |
| 747 |
|
|
| 748 |
|
|
| 749 |
|
public function load_scripts_styles() |
| 750 |
|
{ |
| 751 |
|
// style |
| 752 |
|
wp_register_style( |
| 753 |
|
'espresso_reg', |
| 754 |
|
REG_ASSETS_URL . 'espresso_registrations_admin.css', |
| 755 |
|
array('ee-admin-css'), |
| 756 |
|
EVENT_ESPRESSO_VERSION |
| 757 |
|
); |
| 758 |
|
wp_enqueue_style('espresso_reg'); |
| 759 |
|
// script |
| 760 |
|
wp_register_script( |
| 761 |
|
'espresso_reg', |
admin_pages/events/Events_Admin_Page.core.php 1 location
|
@@ 612-622 (lines=11) @@
|
| 609 |
|
/** |
| 610 |
|
* Enqueuing scripts and styles specific to this view |
| 611 |
|
*/ |
| 612 |
|
public function load_scripts_styles_edit() |
| 613 |
|
{ |
| 614 |
|
// styles |
| 615 |
|
wp_enqueue_style('espresso-ui-theme'); |
| 616 |
|
wp_register_style( |
| 617 |
|
'event-editor-css', |
| 618 |
|
EVENTS_ASSETS_URL . 'event-editor.css', |
| 619 |
|
array('ee-admin-css'), |
| 620 |
|
EVENT_ESPRESSO_VERSION |
| 621 |
|
); |
| 622 |
|
wp_enqueue_style('event-editor-css'); |
| 623 |
|
// scripts |
| 624 |
|
wp_register_script( |
| 625 |
|
'event-datetime-metabox', |