accordion.css
3 months ago
button.css
4 weeks ago
card.css
3 months ago
common.css
3 months ago
common.js
3 months ago
deprecated.css
3 months ago
form.css
3 months ago
header.css
3 months ago
modal-new.css
3 months ago
modal.css
3 months ago
modal.js
3 months ago
screen-options.js
3 months ago
tabs.js
3 months ago
toast.css
3 months ago
toaster.js
3 months ago
toggles.js
3 months ago
common.js
18 lines
| 1 | import domReady from '@wordpress/dom-ready'; |
| 2 | |
| 3 | import './common.css'; |
| 4 | |
| 5 | import './toaster'; |
| 6 | |
| 7 | import { tabs } from './tabs'; |
| 8 | import { modal } from './modal'; |
| 9 | import { toggles } from './toggles'; |
| 10 | import { screenOptions } from './screen-options'; |
| 11 | |
| 12 | domReady( function () { |
| 13 | screenOptions(); |
| 14 | tabs(); |
| 15 | toggles(); |
| 16 | modal(); |
| 17 | } ); |
| 18 |