-
-
Save inmyfree/4696495 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
data:text/html, | |
<style type="text/css"> | |
#e { | |
position:absolute; | |
top:0; | |
right:0; | |
bottom:0; | |
left:0; | |
font-size:16px; | |
} | |
</style> | |
<div id="e"></div> | |
<script src="http://d1n0x3qji82z53.cloudfront.net/src-min-noconflict/ace.js"></script> | |
<script src="http://code.jquery.com/jquery-1.9.0.min.js"></script> | |
<script> | |
var myKey="SecretKeyz"; | |
$(document).ready(function(){ | |
var e; | |
var url = "http://api.openkeyval.org/"+myKey; | |
$.ajax({ | |
url: url, | |
dataType: "jsonp", | |
success: function(data){ | |
e = ace.edit("e"); | |
e.setTheme("ace/theme/tomorrow_night_eighties"); | |
e.getSession().setMode("ace/mode/markdown"); | |
e.setValue(data); | |
} | |
}); | |
$("#e").on("keydown", function (b) { | |
if (b.ctrlKey && 83 == b.which) { | |
b.preventDefault(); | |
var data = myKey+"="+encodeURIComponent(e.getValue()); | |
$.ajax({ | |
data: data, | |
url: "http://api.openkeyval.org/store/", | |
dataType: "jsonp", | |
success: function(data){ | |
alert("Saved."); | |
} | |
}); | |
} | |
}); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment