temp fix for compile-tab - for old compiler versions pulldown

pull/1/head
Rob Stupay 6 years ago committed by yann300
parent d8f21b736f
commit 5a82ebb240
  1. 6
      src/app/tabs/compile-tab.js

@ -59,8 +59,10 @@ class CompileTab {
const self = this
self.compiler.event.register('compilationStarted', () => {
self._view.errorContainer.innerHTML = ''
self._view.errorContainerHead.innerHTML = ''
if (self._view.errorContainer) {
self._view.errorContainer.innerHTML = ''
self._view.errorContainerHead.innerHTML = ''
}
})
self.compiler.event.register('compilationFinished', (success, data, source) => {
if (success) {

Loading…
Cancel
Save