2017-10-30 01:36:05 +00:00
|
|
|
/* global wikijs */
|
2017-05-29 00:30:58 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
namespaced: true,
|
|
|
|
state: {
|
|
|
|
shown: false
|
|
|
|
},
|
|
|
|
getters: {},
|
|
|
|
mutations: {
|
|
|
|
shownChange: (state, shownState) => { state.shown = shownState }
|
|
|
|
},
|
|
|
|
actions: {
|
|
|
|
open({ commit }) {
|
|
|
|
commit('shownChange', true)
|
|
|
|
wikijs.$emit('editorVideo/init')
|
|
|
|
},
|
|
|
|
close({ commit }) { commit('shownChange', false) }
|
|
|
|
}
|
|
|
|
}
|