Commit 552a9d6d authored by yann300's avatar yann300

remove config dep left over

parent 94dd0280
...@@ -54,7 +54,6 @@ class CompileTab extends ViewPlugin { ...@@ -54,7 +54,6 @@ class CompileTab extends ViewPlugin {
} }
this.compileTabLogic = new CompileTabLogic(this, this.compileTabLogic = new CompileTabLogic(this,
this.fileManager, this.fileManager,
this.config,
this.fileProvider, this.fileProvider,
this.contentImport, this.contentImport,
this.setCompileErrors.bind(this) this.setCompileErrors.bind(this)
......
...@@ -18,7 +18,7 @@ export class CompileTab extends Plugin { ...@@ -18,7 +18,7 @@ export class CompileTab extends Plugin {
public compilerImport public compilerImport
public event public event
constructor (public api, public fileManager, public config, public fileProvider, public contentImport) { constructor (public api, public fileManager, public contentImport) {
super(profile) super(profile)
this.event = new EventEmitter() this.event = new EventEmitter()
this.compiler = new Compiler((url, cb) => this.call('contentImport', 'resolveAndSave', url).then((result) => cb(null, result)).catch((error) => cb(error.message))) this.compiler = new Compiler((url, cb) => this.call('contentImport', 'resolveAndSave', url).then((result) => cb(null, result)).catch((error) => cb(error.message)))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment