| 1 |
import {Core} from "../Core"; |
| 2 |
import {PhotonicThickbox} from "../Lightboxes/Thickbox"; |
| 3 |
import * as Listeners from "../Listeners"; |
| 4 |
import * as Layout from "../Layouts/Layout"; |
| 5 |
|
| 6 |
jQuery(document).ready(function($) { |
| 7 |
const lightbox = new PhotonicThickbox($); |
| 8 |
Core.setLightbox(lightbox); |
| 9 |
lightbox.initialize(); |
| 10 |
|
| 11 |
Core.executeCommon(); |
| 12 |
Listeners.addAllListeners(); |
| 13 |
Layout.initializeLayouts(lightbox); |
| 14 |
}); |
| 15 |
|