remove unused parameters from the debugger tab constructor

pull/1/head
Iuri Matias 7 years ago
parent 5481882937
commit 32a4f55b70
  1. 2
      src/app/panels/righthand-panel.js
  2. 2
      src/app/tabs/debugger-tab.js

@ -154,7 +154,7 @@ function RighthandPanel (appAPI, events, opts) {
this._view.tabbedMenu.addTab('Run', 'runView', runTab(optionViews, appAPI, events, opts))
this._view.tabbedMenu.addTab('Settings', 'settingsView', settingsTab(optionViews, appAPI, events, opts))
this._view.tabbedMenu.addTab('Analysis', 'staticanalysisView', analysisTab(optionViews))
this._view.tabbedMenu.addTab('Debugger', 'debugView', debuggerTab(optionViews, appAPI, events, opts))
this._view.tabbedMenu.addTab('Debugger', 'debugView', debuggerTab(optionViews))
this._view.tabbedMenu.addTab('Support', 'supportView', supportTab(optionViews, appAPI, events, opts))
this._view.tabbedMenu.selectTabByTitle('Compile')

@ -1,7 +1,7 @@
var yo = require('yo-yo')
var css = require('./styles/debugger-tab-styles')
function debuggerTab (container, appAPI, events, opts) {
function debuggerTab (container) {
var el = yo`
<div class="${css.debuggerTabView} "id="debugView">
<div id="debugger" class="${css.debugger}"></div>

Loading…
Cancel
Save