Merge pull request #59 from chriseth/doNotModifyExistingFiles

Do not modify existing files when loading gists.
pull/1/head
chriseth 9 years ago
commit b8e6d45f1c
  1. 12
      index.html

@ -136,7 +136,7 @@
var gistId;
var key = location_query_params[index+1];
if (key === '') {
var str = prompt("Enter the URL or ID of the Gist you'd like to load.");
var str = prompt("Enter the URL or ID of the Gist you would like to load.");
if (str !== '') {
gistId = getGistId( str );
loadingFromGist = !!gistId;
@ -152,7 +152,15 @@
success: function(response){
if (response.data) {
for (var f in response.data.files) {
window.localStorage[fileKey(f)] = response.data.files[f].content;
var key = fileKey(f);
var content = response.data.files[f].content;
if (key in window.localStorage && window.localStorage[key] != content) {
var count = '';
var otherKey = key + count;
while ((key + count) in window.localStorage) count = count - 1;
window.localStorage[key + count] = window.localStorage[key];
}
window.localStorage[key] = content;
}
SOL_CACHE_FILE = fileKey(Object.keys(response.data.files)[0]);
updateFiles();

Loading…
Cancel
Save