2017-04-01 21:07:01 +00:00
|
|
|
'use strict'
|
2016-08-30 02:19:47 +00:00
|
|
|
|
2017-05-05 02:41:33 +00:00
|
|
|
/* eslint-disable no-new */
|
|
|
|
|
2017-04-01 21:07:01 +00:00
|
|
|
import $ from 'jquery'
|
2017-04-14 18:15:11 +00:00
|
|
|
import MathJax from 'mathjax'
|
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') : ''
|
|
|
|
|
2017-05-05 02:41:33 +00:00
|
|
|
// Copy Path
|
|
|
|
|
2017-05-21 03:21:16 +00:00
|
|
|
// new Vue({
|
|
|
|
// el: '.modal-copypath',
|
|
|
|
// render: h => h(CopyPath)
|
|
|
|
// })
|
2017-05-05 02:41:33 +00:00
|
|
|
|
2017-04-14 18:15:11 +00:00
|
|
|
// MathJax Render
|
|
|
|
|
|
|
|
MathJax.Hub.Config({
|
|
|
|
jax: ['input/TeX', 'input/MathML', 'output/SVG'],
|
|
|
|
extensions: ['tex2jax.js', 'mml2jax.js'],
|
|
|
|
TeX: {
|
|
|
|
extensions: ['AMSmath.js', 'AMSsymbols.js', 'noErrors.js', 'noUndefined.js']
|
|
|
|
},
|
|
|
|
SVG: {
|
|
|
|
scale: 120,
|
|
|
|
font: 'STIX-Web'
|
|
|
|
},
|
2017-04-15 17:15:23 +00:00
|
|
|
tex2jax: {
|
|
|
|
preview: 'none'
|
|
|
|
},
|
|
|
|
showMathMenu: false,
|
|
|
|
showProcessingMessages: false,
|
|
|
|
messageStyle: 'none'
|
2017-04-14 18:15:11 +00:00
|
|
|
})
|
2017-04-15 17:15:23 +00:00
|
|
|
MathJax.Hub.Configured()
|
2017-04-14 18:15:11 +00:00
|
|
|
|
2017-04-01 21:07:01 +00:00
|
|
|
require('../modals/create.js')(currentBasePath)
|
|
|
|
require('../modals/move.js')(currentBasePath, alerts)
|
|
|
|
}
|
2017-02-09 01:52:37 +00:00
|
|
|
}
|