Warning: session_start(): Session cannot be started after headers have already been sent in /home/tvrreohg/public_html/manga.php on line 13
import $ from 'jquery'; class ModalUI { constructor($node /*, options */) { this.$modal = $node; this.$backdrop = $('
'); } show() { this.$backdrop.appendTo(document.body).show(); this.$modal.addClass('open').show(); this.$modal.trigger('note.modal.show'); this.$modal.off('click', '.close').on('click', '.close', this.hide.bind(this)); this.$modal.on('keydown', (event) => { if (event.which === 27) { event.preventDefault(); this.hide(); } }); } hide() { this.$modal.removeClass('open').hide(); this.$backdrop.hide(); this.$modal.trigger('note.modal.hide'); this.$modal.off('keydown'); } } export default ModalUI;