Commit 289cec44 authored by Dave Hoover's avatar Dave Hoover

Removing unnecessary Editor constructor argument

parent d49162d7
......@@ -82,7 +82,7 @@ var run = function() {
// ----------------- editor ----------------------
var editor = new Editor(ace, loadingFromGist, SOL_CACHE_FILE_PREFIX);
var editor = new Editor(loadingFromGist, SOL_CACHE_FILE_PREFIX);
// ----------------- tabbed menu -------------------
......
var ace = require('brace');
require('../mode-solidity.js');
function Editor(ace, loadingFromGist, SOL_CACHE_FILE_PREFIX) {
function Editor(loadingFromGist, SOL_CACHE_FILE_PREFIX) {
this.newFile = function() {
untitledCount = '';
......
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