Commit 26774404 authored by yann300's avatar yann300

fix gist

parent 54779176
...@@ -66,9 +66,9 @@ var run = function () { ...@@ -66,9 +66,9 @@ var run = function () {
} }
// Add files received from remote instance (i.e. another browser-solidity) // Add files received from remote instance (i.e. another browser-solidity)
function loadFiles (files) { function loadFiles (filesSet) {
for (var f in files) { for (var f in filesSet) {
files.set(createNonClashingName(f), files[f].content) files.set(createNonClashingName(f), filesSet[f].content)
} }
switchToNextFile() switchToNextFile()
} }
......
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