2017-04-02 23:36:43 +00:00
|
|
|
'use strict'
|
2016-08-30 02:19:47 +00:00
|
|
|
|
2017-04-02 23:36:43 +00:00
|
|
|
import $ from 'jquery'
|
2016-08-30 02:19:47 +00:00
|
|
|
|
2017-04-02 23:36:43 +00:00
|
|
|
module.exports = (alerts, socket) => {
|
|
|
|
if ($('#page-type-create').length) {
|
|
|
|
let pageEntryPath = $('#page-type-create').data('entrypath')
|
2016-09-11 02:53:21 +00:00
|
|
|
|
2017-04-02 23:36:43 +00:00
|
|
|
// -> Discard
|
2016-08-30 02:19:47 +00:00
|
|
|
|
2017-04-02 23:36:43 +00:00
|
|
|
$('.btn-create-discard').on('click', (ev) => {
|
|
|
|
$('#modal-create-discard').toggleClass('is-active')
|
|
|
|
})
|
|
|
|
|
|
|
|
require('../components/editor.js')(alerts, pageEntryPath, socket)
|
|
|
|
}
|
2017-02-09 01:52:37 +00:00
|
|
|
}
|