wikijs-fork/client/js/pages/view.js

46 lines
1.1 KiB
JavaScript
Raw Normal View History

'use strict'
2017-05-05 02:41:33 +00:00
/* eslint-disable no-new */
import $ from 'jquery'
2017-04-14 18:15:11 +00:00
import MathJax from 'mathjax'
2017-05-05 02:41:33 +00:00
import * as CopyPath from '../components/copy-path.vue'
import Vue from 'vue'
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
new Vue({
el: '.modal-copypath',
render: h => h(CopyPath)
})
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
require('../modals/create.js')(currentBasePath)
require('../modals/move.js')(currentBasePath, alerts)
}
2017-02-09 01:52:37 +00:00
}