Commit 0f851e39 authored by chriseth's avatar chriseth Committed by GitHub

Merge pull request #447 from ethereum/fixgist

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