Commit 489f45aa authored by d11e9's avatar d11e9

revert to anonymous gists

parent f76af79c
...@@ -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' );
} }
}); });
});
}) })
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment