Commit 0016ef06 authored by Iuri Matias's avatar Iuri Matias

remove unnecessary parameters from supportTab

parent fd54c0cd
......@@ -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>
......
var yo = require('yo-yo')
// -------------- styling ----------------------
var csjs = require('csjs-inject')
var styleGuide = require('remix-lib').ui.themeChooser
var styles = styleGuide.chooser()
......
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