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
f64b8a62
Commit
f64b8a62
authored
Apr 18, 2019
by
LianaHus
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
error msg for invalid gist id
parent
ed28bcf1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
gist-handler.js
src/lib/gist-handler.js
+3
-1
No files found.
src/lib/gist-handler.js
View file @
f64b8a62
...
@@ -12,11 +12,13 @@ function GistHandler (_window) {
...
@@ -12,11 +12,13 @@ function GistHandler (_window) {
var
gistId
var
gistId
if
(
params
[
'gist'
]
===
''
)
{
if
(
params
[
'gist'
]
===
''
)
{
loadingFromGist
=
true
loadingFromGist
=
true
modalDialogCustom
.
prompt
(
null
,
'Enter the ID of the Gist you would like to load.'
,
null
,
(
target
)
=>
{
modalDialogCustom
.
prompt
(
null
,
'Enter the ID of the Gist
or URL
you would like to load.'
,
null
,
(
target
)
=>
{
if
(
target
!==
''
)
{
if
(
target
!==
''
)
{
gistId
=
getGistId
(
target
)
gistId
=
getGistId
(
target
)
if
(
gistId
)
{
if
(
gistId
)
{
cb
(
gistId
)
cb
(
gistId
)
}
else
{
modalDialogCustom
.
alert
(
'Error while loading gist. Please provide a valid Gist ID or URL.'
)
}
}
}
}
})
})
...
...
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