| 1 |
import { handleFormSubmitValidation } from './edit/validate' |
| 2 |
import { handleSnippetTypeTabs } from './edit/tabs' |
| 3 |
import { handleClipboardCopy } from './edit/clipboard' |
| 4 |
import { handleContentShortcodeOptions } from './edit/shortcode' |
| 5 |
import { loadSnippetCodeEditor } from './edit/editor' |
| 6 |
|
| 7 |
loadSnippetCodeEditor() |
| 8 |
handleSnippetTypeTabs() |
| 9 |
handleContentShortcodeOptions() |
| 10 |
handleFormSubmitValidation() |
| 11 |
handleClipboardCopy() |
| 12 |
|