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
bff9fbc7
Commit
bff9fbc7
authored
Jan 17, 2019
by
yann300
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
warn when showing content
parent
5328c733
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
app.js
src/app.js
+6
-1
support-tab.js
src/app/tabs/support-tab.js
+1
-1
No files found.
src/app.js
View file @
bff9fbc7
...
...
@@ -475,7 +475,12 @@ Please make a backup of your contracts and start using http://remix.ethereum.org
swapPanelApi
.
event
.
on
(
'toggle'
,
()
=>
{
this
.
_components
.
resizeFeature
.
panel1
.
clientWidth
!==
0
?
this
.
_components
.
resizeFeature
.
minimize
()
:
this
.
_components
.
resizeFeature
.
maximise
()
})
swapPanelApi
.
event
.
on
(
'showing'
,
()
=>
{
this
.
_components
.
resizeFeature
.
panel1
.
clientWidth
===
0
?
this
.
_components
.
resizeFeature
.
maximise
()
:
''
})
swapPanelApi
.
event
.
on
(
'showing'
,
(
moduleName
)
=>
{
this
.
_components
.
resizeFeature
.
panel1
.
clientWidth
===
0
?
this
.
_components
.
resizeFeature
.
maximise
()
:
''
var
current
=
appStore
.
getOne
(
moduleName
)
// warn the content that it is being displayed. TODO should probably be done in each view
if
(
current
&&
current
.
api
.
__showing
)
current
.
api
.
__showing
()
})
verticalIconComponent
.
select
(
'file explorers'
)
...
...
src/app/tabs/support-tab.js
View file @
bff9fbc7
...
...
@@ -9,7 +9,7 @@ class SupportTab {
this
.
gitterIsLoaded
=
false
}
loadContent
()
{
__showing
()
{
if
(
this
.
gitterIsLoaded
)
return
const
iframe
=
yo
`<iframe class="
${
css
.
chatIframe
}
" src='https://gitter.im/ethereum/remix/~embed'>`
...
...
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