Skip to content

Commit

Permalink
remove export button setup (replaced by save feature)
Browse files Browse the repository at this point in the history
  • Loading branch information
psema4 committed Nov 13, 2012
1 parent 7cba737 commit b712579
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions static/js/app.js
Expand Up @@ -104,16 +104,6 @@ window.addEventListener('load', function() {
subscriptions.push(pubsub.subscribe(topic, handlers[topic]));
});

// Export
$('#export').addEventListener('click', function() {
var data = game.getGameData()
, exportOutEl = $('#export-out')
;

exportOutEl.value = JSON.stringify(data);
exportOutEl.style.visibility = 'visible';
});

// Engine startup
window.game = new GameEngine();

Expand Down

0 comments on commit b712579

Please sign in to comment.