Commit f36b9d9a authored by Alex Beregszaszi's avatar Alex Beregszaszi

Avoid showing the config file in the editor (temporary solution)

parent d026e399
...@@ -95,7 +95,8 @@ function Editor (loadingFromGist, storage) { ...@@ -95,7 +95,8 @@ function Editor (loadingFromGist, storage) {
function getFiles () { function getFiles () {
var files = [] var files = []
storage.keys().forEach(function (f) { storage.keys().forEach(function (f) {
if (utils.isCachedFile(f)) { // NOTE: as a temporary measure do not show the config file in the editor
if (utils.isCachedFile(f) && (f !== (utils.fileKey('.browser-solidity.json')))) {
files.push(f) files.push(f)
if (!sessions[f]) sessions[f] = newEditorSession(f) if (!sessions[f]) sessions[f] = newEditorSession(f)
} }
......
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