Get bridges working

This commit is contained in:
Shaunak Kishore
2015-09-30 01:31:12 -04:00
parent b621da5c9c
commit c10079bba4
4 changed files with 99 additions and 3 deletions

View File

@ -53,7 +53,7 @@ Tracker.autorun(() => {
const glyph = Session.get('editor.glyph');
if (!glyph) return;
if (!last_glyph || glyph.character !== last_glyph.character) {
stage = new stages.strokes(glyph);
stage = new stages.bridges(glyph);
}
stage.refresh(glyph);
last_glyph = glyph;