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
8500806c
Commit
8500806c
authored
Jun 30, 2021
by
lianahus
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
put js and css files to assets locally
lint`
parent
96367d47
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
49 additions
and
1 deletion
+49
-1
app.js
apps/remix-ide/src/app.js
+0
-0
intro.min.js
apps/remix-ide/src/assets/js/intro.min.js
+0
-0
soljson_.js
apps/remix-ide/src/assets/js/soljson_.js
+0
-0
index.html
apps/remix-ide/src/index.html
+1
-1
walkthroughService.js
apps/remix-ide/src/walkthroughService.js
+48
-0
No files found.
apps/remix-ide/src/app.js
View file @
8500806c
apps/remix-ide/src/assets/js/intro.min.js
0 → 100644
View file @
8500806c
This diff is collapsed.
Click to expand it.
apps/remix-ide/src/assets/js/soljson_.js
0 → 100644
View file @
8500806c
This source diff could not be displayed because it is too large. You can
view the blob
instead.
apps/remix-ide/src/index.html
View file @
8500806c
...
...
@@ -118,6 +118,6 @@
<script
src=
"polyfills.js"
type=
"module"
></script>
<script
src=
"vendor.js"
type=
"module"
></script>
<script
src=
"https://kit.fontawesome.com/41dd021e94.js"
crossorigin=
"anonymous"
></script>
<script
type=
"text/javascript"
src=
"
https://cdnjs.cloudflare.com/ajax/libs/intro.js/4.1.0
/intro.min.js"
></script>
<script
type=
"text/javascript"
src=
"
assets/js
/intro.min.js"
></script>
</body>
</html>
apps/remix-ide/src/walkthroughService.js
0 → 100644
View file @
8500806c
const
introJs
=
require
(
'intro.js'
)
export
class
WalkthroughService
{
constructor
(
params
)
{
this
.
params
=
params
}
start
(
params
)
{
if
(
!
localStorage
.
getItem
(
'hadTour_initial'
))
{
introJs
().
setOptions
({
steps
:
[{
title
:
'Welcome to Remix IDE'
,
intro
:
'Click to launch the Home tab that contains links, tips, and shortcuts..'
,
element
:
document
.
querySelector
(
'#verticalIconsHomeIcon'
),
tooltipClass
:
'bg-light text-dark'
,
position
:
'right'
},
{
element
:
document
.
querySelector
(
'#compileIcons'
),
title
:
'Solidity Compiler'
,
intro
:
'Having selected a .sol file in the File Explorers(the icon above), compile it with the Solidity Compiler.'
,
tooltipClass
:
'bg-light text-dark'
,
position
:
'right'
},
{
title
:
'Deploy your contract'
,
element
:
document
.
querySelector
(
'#runIcons'
),
intro
:
'Choose a chain, deploy a contract and play with your functions.'
,
tooltipClass
:
'bg-light text-dark'
,
position
:
'right'
},
{
title
:
'The plugins world'
,
element
:
document
.
querySelector
(
'#settingsIcons'
),
intro
:
'Explore more plugins and manage permissions.'
,
tooltipClass
:
'bg-light text-dark'
,
position
:
'right'
,
doneLabel
:
'Done!'
}
]
}).
start
()
localStorage
.
setItem
(
'hadTour_initial'
,
true
)
}
}
startFeatureTour
()
{
}
}
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