Commit 25d38905 by kimth

Remove outdated hardcoded url from circuit simulator

parent 40b49224
...@@ -172,11 +172,13 @@ schematic = (function() { ...@@ -172,11 +172,13 @@ schematic = (function() {
this.tools = new Array(); this.tools = new Array();
this.toolbar = []; this.toolbar = [];
/* DISABLE HELP BUTTON -- SJSU
if (!this.diagram_only) { if (!this.diagram_only) {
this.tools['help'] = this.add_tool(help_icon,'Help: display help page',this.help); this.tools['help'] = this.add_tool(help_icon,'Help: display help page',this.help);
this.enable_tool('help',true); this.enable_tool('help',true);
this.toolbar.push(null); // spacer this.toolbar.push(null); // spacer
} }
END DISABLE HELP BUTTON -- SJSU */
if (this.edits_allowed) { if (this.edits_allowed) {
this.tools['grid'] = this.add_tool(grid_icon,'Grid: toggle grid display',this.toggle_grid); this.tools['grid'] = this.add_tool(grid_icon,'Grid: toggle grid display',this.toggle_grid);
......
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