Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
34446b0d
Commit
34446b0d
authored
Feb 06, 2018
by
Iuri Matias
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove unused parameters from the analysis tab constructor
parent
6c89506e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
righthand-panel.js
src/app/panels/righthand-panel.js
+1
-1
analysis-tab.js
src/app/tabs/analysis-tab.js
+1
-1
No files found.
src/app/panels/righthand-panel.js
View file @
34446b0d
...
@@ -153,7 +153,7 @@ function RighthandPanel (appAPI, events, opts) {
...
@@ -153,7 +153,7 @@ function RighthandPanel (appAPI, events, opts) {
this
.
_view
.
tabbedMenu
.
addTab
(
'Compile'
,
'compileView'
,
compileTab
(
optionViews
,
appAPI
,
events
,
opts
))
this
.
_view
.
tabbedMenu
.
addTab
(
'Compile'
,
'compileView'
,
compileTab
(
optionViews
,
appAPI
,
events
,
opts
))
this
.
_view
.
tabbedMenu
.
addTab
(
'Run'
,
'runView'
,
runTab
(
optionViews
,
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
(
'Settings'
,
'settingsView'
,
settingsTab
(
optionViews
,
appAPI
,
events
,
opts
))
this
.
_view
.
tabbedMenu
.
addTab
(
'Analysis'
,
'staticanalysisView'
,
analysisTab
(
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
,
appAPI
,
events
,
opts
))
this
.
_view
.
tabbedMenu
.
addTab
(
'Support'
,
'supportView'
,
supportTab
(
optionViews
,
appAPI
,
events
,
opts
))
this
.
_view
.
tabbedMenu
.
addTab
(
'Support'
,
'supportView'
,
supportTab
(
optionViews
,
appAPI
,
events
,
opts
))
this
.
_view
.
tabbedMenu
.
selectTabByTitle
(
'Compile'
)
this
.
_view
.
tabbedMenu
.
selectTabByTitle
(
'Compile'
)
...
...
src/app/tabs/analysis-tab.js
View file @
34446b0d
var
yo
=
require
(
'yo-yo'
)
var
yo
=
require
(
'yo-yo'
)
var
css
=
require
(
'./styles/analysis-tab-styles'
)
var
css
=
require
(
'./styles/analysis-tab-styles'
)
function
analysisTab
(
container
,
appAPI
,
events
,
opts
)
{
function
analysisTab
(
container
)
{
var
el
=
yo
`
var
el
=
yo
`
<div class="
${
css
.
analysisTabView
}
"id="staticanalysisView">
<div class="
${
css
.
analysisTabView
}
"id="staticanalysisView">
</div>
</div>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment