Skip to content

Commit

Permalink
fix(composition-engine): complete composition work on null
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Mar 4, 2016
1 parent 7648d1c commit 02b8f3d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/composition-engine.js
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,11 @@ export class CompositionEngine {
});
} else if (context.viewSlot) {
context.viewSlot.removeAll();

if (context.compositionTransactionNotifier) {
context.compositionTransactionNotifier.done();
}

return Promise.resolve(null);
}
}
Expand Down

0 comments on commit 02b8f3d

Please sign in to comment.