Skip to content

Commit b712579

Browse files
committedNov 13, 2012
remove export button setup (replaced by save feature)
1 parent 7cba737 commit b712579

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed
 

‎static/js/app.js

-10
Original file line numberDiff line numberDiff line change
@@ -104,16 +104,6 @@ window.addEventListener('load', function() {
104104
subscriptions.push(pubsub.subscribe(topic, handlers[topic]));
105105
});
106106

107-
// Export
108-
$('#export').addEventListener('click', function() {
109-
var data = game.getGameData()
110-
, exportOutEl = $('#export-out')
111-
;
112-
113-
exportOutEl.value = JSON.stringify(data);
114-
exportOutEl.style.visibility = 'visible';
115-
});
116-
117107
// Engine startup
118108
window.game = new GameEngine();
119109

0 commit comments

Comments
 (0)
Please sign in to comment.