Remove outdated hardcoded url from circuit simulator

This commit is contained in:
kimth
2012-08-18 09:51:27 -04:00
parent 40b49224a2
commit 25d3890595

View File

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