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
6acc7362
Commit
6acc7362
authored
Nov 23, 2016
by
yann300
Committed by
GitHub
Nov 23, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update ButtonNavigator.js
parent
1a1cebb5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
ButtonNavigator.js
src/ui/ButtonNavigator.js
+4
-4
No files found.
src/ui/ButtonNavigator.js
View file @
6acc7362
...
...
@@ -22,13 +22,13 @@ module.exports = ButtonNavigator
ButtonNavigator
.
prototype
.
render
=
function
()
{
var
self
=
this
var
view
=
yo
`<div>
<button id='overback' title='step over back' class='fa fa-
fast-backward
' style=
${
ui
.
formatCss
(
style
.
button
)}
onclick=
${
function
()
{
self
.
event
.
trigger
(
'stepOverBack'
)
}
} disabled=
${
this
.
overBackDisabled
}
>
<button id='overback' title='step over back' class='fa fa-
angle-double-left
' style=
${
ui
.
formatCss
(
style
.
button
)}
onclick=
${
function
()
{
self
.
event
.
trigger
(
'stepOverBack'
)
}
} disabled=
${
this
.
overBackDisabled
}
>
</button>
<button id='intoback' title='step into back' class='fa fa-
backward
' style=
${
ui
.
formatCss
(
style
.
button
)}
onclick=
${
function
()
{
self
.
event
.
trigger
(
'stepIntoBack'
)
}
} disabled=
${
this
.
intoBackDisabled
}
>
<button id='intoback' title='step into back' class='fa fa-
angle-left
' style=
${
ui
.
formatCss
(
style
.
button
)}
onclick=
${
function
()
{
self
.
event
.
trigger
(
'stepIntoBack'
)
}
} disabled=
${
this
.
intoBackDisabled
}
>
</button>
<button id='intoforward' title='step into forward' class='fa fa-
forward
' style=
${
ui
.
formatCss
(
style
.
button
)}
onclick=
${
function
()
{
self
.
event
.
trigger
(
'stepIntoForward'
)
}
} disabled=
${
this
.
intoForwardDisabled
}
>
<button id='intoforward' title='step into forward' class='fa fa-
angle-right
' style=
${
ui
.
formatCss
(
style
.
button
)}
onclick=
${
function
()
{
self
.
event
.
trigger
(
'stepIntoForward'
)
}
} disabled=
${
this
.
intoForwardDisabled
}
>
</button>
<button id='overforward' title='step over forward' class='fa fa-
fast-forward
' style=
${
ui
.
formatCss
(
style
.
button
)}
onclick=
${
function
()
{
self
.
event
.
trigger
(
'stepOverForward'
)
}
} disabled=
${
this
.
overForwardDisabled
}
>
<button id='overforward' title='step over forward' class='fa fa-
angle-double-right
' style=
${
ui
.
formatCss
(
style
.
button
)}
onclick=
${
function
()
{
self
.
event
.
trigger
(
'stepOverForward'
)
}
} disabled=
${
this
.
overForwardDisabled
}
>
</button>
<button id='nextcall' title='step next call' class='fa fa-chevron-right' style=
${
ui
.
formatCss
(
style
.
button
)}
onclick=
${
function
()
{
self
.
event
.
trigger
(
'jumpNextCall'
)
}
} disabled=
${
this
.
nextCallDisabled
}
>
</button>
...
...
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