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
38b65cd4
Commit
38b65cd4
authored
Jan 14, 2019
by
Iuri Matias
Committed by
yann300
Jan 17, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactor & simplify support tab
parent
d33d4fad
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
21 deletions
+9
-21
support-tab.js
src/app/tabs/support-tab.js
+9
-21
No files found.
src/app/tabs/support-tab.js
View file @
38b65cd4
const
yo
=
require
(
'yo-yo'
)
var
css
=
require
(
'./styles/support-tab-styles'
)
var
globalRegistry
=
require
(
'../../global/registry'
)
var
EventManager
=
require
(
'../../lib/events'
)
class
SupportTab
{
constructor
(
localRegistry
)
{
this
.
event
=
new
EventManager
()
this
.
el
=
null
this
.
gitterIframe
=
''
this
.
gitterIsLoaded
=
false
}
this
.
data
=
{
gitterIsLoaded
:
false
}
this
.
_components
=
{}
this
.
_components
.
registry
=
localRegistry
||
globalRegistry
this
.
_deps
=
{
app
:
this
.
_components
.
registry
.
get
(
'app'
).
api
}
loadContent
()
{
if
(
this
.
gitterIsLoaded
)
return
this
.
_deps
.
app
.
event
.
register
(
'tabChanged'
,
(
tabName
)
=>
{
if
(
tabName
!==
'Support'
||
this
.
data
.
gitterIsLoaded
)
return
const
iframe
=
yo
`<iframe class="
${
css
.
chatIframe
}
" src='https://gitter.im/ethereum/remix/~embed'>`
this
.
gitterIframe
.
parentNode
.
replaceChild
(
iframe
,
this
.
gitterIframe
)
this
.
gitterIframe
=
iframe
this
.
el
.
style
.
display
=
'block'
this
.
data
.
gitterIsLoaded
=
true
})
const
iframe
=
yo
`<iframe class="
${
css
.
chatIframe
}
" src='https://gitter.im/ethereum/remix/~embed'>`
this
.
gitterIframe
.
parentNode
.
replaceChild
(
iframe
,
this
.
gitterIframe
)
this
.
gitterIframe
=
iframe
this
.
el
.
style
.
display
=
'block'
this
.
gitterIsLoaded
=
true
}
profile
()
{
return
{
...
...
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