view.js 347 B

123456789101112
  1. 'use strict'
  2. import $ from 'jquery'
  3. module.exports = (alerts) => {
  4. if ($('#page-type-view').length) {
  5. let currentBasePath = ($('#page-type-view').data('entrypath') !== 'home') ? $('#page-type-view').data('entrypath') : ''
  6. require('../modals/create.js')(currentBasePath)
  7. require('../modals/move.js')(currentBasePath, alerts)
  8. }
  9. }