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
489f45aa
Commit
489f45aa
authored
Oct 08, 2015
by
d11e9
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
revert to anonymous gists
parent
f76af79c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
17 deletions
+1
-17
index.html
index.html
+1
-17
No files found.
index.html
View file @
489f45aa
...
@@ -146,19 +146,7 @@ THE SOFTWARE.
...
@@ -146,19 +146,7 @@ THE SOFTWARE.
$
(
'#gist'
).
click
(
function
(){
$
(
'#gist'
).
click
(
function
(){
//Get Github Authorization Token with proper scope, print to console
//Get Github Authorization Token with proper scope, print to console
var
note
=
((
new
Date
()).
toString
()
+
Math
.
random
().
toString
());
var
description
=
"Ethereum Contracts Gist created using soleditor at: https://chriseth.github.io/browser-solidity"
;
var
description
=
"Ethereum Contracts Gist created using soleditor at: https://chriseth.github.io/browser-solidity"
;
$
.
ajax
({
url
:
'https://api.github.com/authorizations'
,
type
:
'POST'
,
beforeSend
:
function
(
xhr
)
{
xhr
.
setRequestHeader
(
"Authorization"
,
"Basic "
+
"c29sZWRpdG9yOmRlY2VudHJhbGlzZWV2ZXJ5dGhpbmc="
);
},
data
:
JSON
.
stringify
({
scopes
:[
"gist"
],
note
:
note
})
}).
done
(
function
(
response
)
{
//Create a Gist with token from above
//Create a Gist with token from above
var
files
=
{};
var
files
=
{};
var
filesArr
=
getFiles
();
var
filesArr
=
getFiles
();
...
@@ -173,16 +161,12 @@ THE SOFTWARE.
...
@@ -173,16 +161,12 @@ THE SOFTWARE.
$
.
ajax
({
$
.
ajax
({
url
:
'https://api.github.com/gists'
,
url
:
'https://api.github.com/gists'
,
type
:
'POST'
,
type
:
'POST'
,
beforeSend
:
function
(
xhr
)
{
xhr
.
setRequestHeader
(
"Authorization"
,
"token "
+
response
.
token
);
},
data
:
data
data
:
data
}).
done
(
function
(
response
)
{
}).
done
(
function
(
response
)
{
if
(
response
.
html_url
&&
confirm
(
"Created a gist at "
+
response
.
html_url
+
" Would you like to open it in a new window?"
))
{
if
(
response
.
html_url
&&
confirm
(
"Created a gist at "
+
response
.
html_url
+
" Would you like to open it in a new window?"
))
{
window
.
open
(
response
.
html_url
);
window
.
open
(
response
.
html_url
,
'_blank'
);
}
}
});
});
});
})
})
...
...
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