diff --git a/client/editor.js b/client/editor.js index 9675eaae..6d9a04b1 100644 --- a/client/editor.js +++ b/client/editor.js @@ -118,7 +118,8 @@ Tracker.autorun(() => { types.map((x) => { if (glyph.stages[x]) last_completed_stage = x; }); constructStage(last_completed_stage); } else { - // TODO(skishore): Save the glyph at this point. + Meteor.call('saveGlyph', glyph, + (error, data) => { if (error) console.error(error) }); if (!_.isEqual(glyph.metadata, last_glyph.metadata)) { stage.refreshUI(glyph.character, glyph.metadata); }