remove unnecessary parameters from supportTab

pull/1/head
Iuri Matias 7 years ago
parent fd54c0cdae
commit 0016ef0643
  1. 2
      src/app/panels/righthand-panel.js
  2. 0
      src/app/tabs/styles/tabbed-menu-styles.js
  3. 2
      src/app/tabs/support-tab.js
  4. 1
      src/app/tabs/tabbed-menu.js

@ -155,7 +155,7 @@ function RighthandPanel (appAPI, events, opts) {
this._view.tabbedMenu.addTab('Settings', 'settingsView', settingsTab(optionViews, appAPI, events))
this._view.tabbedMenu.addTab('Analysis', 'staticanalysisView', analysisTab(optionViews))
this._view.tabbedMenu.addTab('Debugger', 'debugView', debuggerTab(optionViews))
this._view.tabbedMenu.addTab('Support', 'supportView', supportTab(optionViews, appAPI, events, opts))
this._view.tabbedMenu.addTab('Support', 'supportView', supportTab(optionViews))
this._view.tabbedMenu.selectTabByTitle('Compile')
self.pluginManager = new PluginManager(appAPI, events)

@ -11,7 +11,7 @@ var infoText = yo`
</div>
`
function supportTab (container, appAPI, events, opts) {
function supportTab (container) {
var el = yo`
<div class="${css.supportTabView} "id="supportView">
<div>

@ -1,6 +1,5 @@
var yo = require('yo-yo')
// -------------- styling ----------------------
var csjs = require('csjs-inject')
var styleGuide = require('remix-lib').ui.themeChooser
var styles = styleGuide.chooser()

Loading…
Cancel
Save