2017-04-01 17:07:01 -04:00
|
|
|
'use strict'
|
2016-08-29 22:19:47 -04:00
|
|
|
|
2017-04-01 17:07:01 -04:00
|
|
|
import $ from 'jquery'
|
2016-08-29 22:19:47 -04:00
|
|
|
|
2017-04-01 17:07:01 -04:00
|
|
|
module.exports = (alerts) => {
|
|
|
|
if ($('#page-type-view').length) {
|
|
|
|
let currentBasePath = ($('#page-type-view').data('entrypath') !== 'home') ? $('#page-type-view').data('entrypath') : ''
|
|
|
|
|
|
|
|
require('../modals/create.js')(currentBasePath)
|
|
|
|
require('../modals/move.js')(currentBasePath, alerts)
|
|
|
|
}
|
2017-02-08 20:52:37 -05:00
|
|
|
}
|