1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-10-12 22:11:58 +00:00
* Fixed: Raven's updated Vue plugin causing Vue to fail to load.
* Fixed: Placeholder text when editing chat ban reasons.
This commit is contained in:
SirStendec 2019-06-20 15:30:18 -04:00
parent 33e81bc7eb
commit 04aa1789a2
4 changed files with 7 additions and 6 deletions

View file

@ -24,13 +24,13 @@ export class Vue extends Module {
const [
ObserveVisibility,
Clickaway,
RavenVue,
//RavenVue,
Components
] = await Promise.all([
import(/* webpackChunkName: "vue" */ 'vue-observe-visibility'),
import(/* webpackChunkName: "vue" */ 'vue-clickaway'),
import(/* webpackChunkName: "vue" */ 'raven-js/plugins/vue'),
//import(/* webpackChunkName: "vue" */ 'raven-js/plugins/vue'),
import(/* webpackChunkName: "vue" */ 'src/std-components/index.js')
]);
@ -39,8 +39,8 @@ export class Vue extends Module {
Vue.use(ObserveVisibility);
Vue.mixin(Clickaway.mixin);
if ( ! DEBUG && this.root.raven )
this.root.raven.addPlugin(RavenVue, Vue);
/*if ( ! DEBUG && this.root.raven )
this.root.raven.addPlugin(RavenVue, Vue);*/
for(const key in components)
if ( has(components, key) )