2017-04-01 21:07:01 +00:00
|
|
|
'use strict'
|
2016-08-30 02:19:47 +00:00
|
|
|
|
2017-04-01 21:07:01 +00:00
|
|
|
import $ from 'jquery'
|
2016-08-30 02:19:47 +00:00
|
|
|
|
2017-04-01 21:07:01 +00: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-09 01:52:37 +00:00
|
|
|
}
|