pull/5370/head
yann300 3 years ago
parent a4c34c37d7
commit 1cd27e6200
  1. 5
      apps/remix-ide/src/app/tabs/compile-tab.js

@ -115,7 +115,7 @@ class CompileTab extends CompilerApiMixin(ViewPlugin) { // implements ICompilerA
async onActivation () { async onActivation () {
this.currentFile = await this.call('fileManager', 'file') this.currentFile = await this.call('fileManager', 'file')
super.onActivation() super.onActivation()
this.call('filePanel', 'registerContextMenuItem', { this.call('filePanel', 'registerContextMenuItem', {
id: 'solidity', id: 'solidity',
name: 'compileFile', name: 'compileFile',
@ -139,10 +139,9 @@ class CompileTab extends CompilerApiMixin(ViewPlugin) { // implements ICompilerA
} }
getAppParameter (name) { getAppParameter (name) {
let param
// first look in the URL params then in the local storage // first look in the URL params then in the local storage
const params = this.queryParams.get() const params = this.queryParams.get()
param = params[name] ? params[name] : this.config.get(name) const param = params[name] ? params[name] : this.config.get(name)
if (param === 'true') return true if (param === 'true') return true
if (param === 'false') return false if (param === 'false') return false
return param return param

Loading…
Cancel
Save