Removed line wrapper hack
This commit is contained in:
parent
0f5b42f4b8
commit
448b61f8f1
|
@ -82,16 +82,7 @@ debug.enable();
|
||||||
}).fail(notification.exception);
|
}).fail(notification.exception);
|
||||||
|
|
||||||
},
|
},
|
||||||
created() {
|
|
||||||
this.$root.$on('redrawLines',()=>{
|
|
||||||
// Ugly hack, but currently the only way to properly fix scrollablility in the lines
|
|
||||||
fixLineWrappers();
|
|
||||||
});
|
|
||||||
},
|
|
||||||
updated() {
|
|
||||||
// Ugly hack, but currently the only way to properly fix scrollablility in the lines
|
|
||||||
setTimeout(fixLineWrappers, 50);
|
|
||||||
},
|
|
||||||
methods: {
|
methods: {
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
|
@ -12,7 +12,7 @@ import Vue from './vue';
|
||||||
|
|
||||||
import Debugger from './debugger';
|
import Debugger from './debugger';
|
||||||
import {load_strings} from './string-helper';
|
import {load_strings} from './string-helper';
|
||||||
import {ProcessStudyplan, fixLineWrappers} from './studyplan-processor';
|
import {ProcessStudyplan} from './studyplan-processor';
|
||||||
|
|
||||||
import TSComponents from './treestudyplan-components';
|
import TSComponents from './treestudyplan-components';
|
||||||
Vue.use(TSComponents);
|
Vue.use(TSComponents);
|
||||||
|
@ -49,7 +49,6 @@ let strings = load_strings({
|
||||||
|
|
||||||
const in_systemcontext = (contextid <= 1);
|
const in_systemcontext = (contextid <= 1);
|
||||||
|
|
||||||
window.addEventListener('resize',fixLineWrappers);
|
|
||||||
let app = new Vue({
|
let app = new Vue({
|
||||||
el: '#root',
|
el: '#root',
|
||||||
data: {
|
data: {
|
||||||
|
@ -66,18 +65,7 @@ let strings = load_strings({
|
||||||
},
|
},
|
||||||
usedcontexts: [],
|
usedcontexts: [],
|
||||||
},
|
},
|
||||||
async created() {
|
|
||||||
this.$root.$on('redrawLines',()=>{
|
|
||||||
// Ugly hack, but currently the only way to properly fix scrollablility in the lines
|
|
||||||
fixLineWrappers();
|
|
||||||
});
|
|
||||||
},
|
|
||||||
updated() {
|
|
||||||
// Ugly hack, but currently the only way to properly fix scrollablility in the lines
|
|
||||||
setTimeout(fixLineWrappers, 50);
|
|
||||||
},
|
|
||||||
async mounted() {
|
async mounted() {
|
||||||
fixLineWrappers();
|
|
||||||
call([{
|
call([{
|
||||||
methodname: 'local_treestudyplan_list_studyplans',
|
methodname: 'local_treestudyplan_list_studyplans',
|
||||||
args: {context_id: contextid}
|
args: {context_id: contextid}
|
||||||
|
|
|
@ -10,7 +10,6 @@ import {load_strings} from './string-helper';
|
||||||
import {call} from 'core/ajax';
|
import {call} from 'core/ajax';
|
||||||
import notification from 'core/notification';
|
import notification from 'core/notification';
|
||||||
import {svgarcpath} from './svgarc';
|
import {svgarcpath} from './svgarc';
|
||||||
//import {fixLineWrappers} from './studyplan-processor';
|
|
||||||
import Debugger from './debugger';
|
import Debugger from './debugger';
|
||||||
|
|
||||||
// Make π available as a constant
|
// Make π available as a constant
|
||||||
|
|
Loading…
Reference in New Issue
Block a user