Skip to content

Commit

Permalink
fix(repeat): ensure one-time interpolation bindings update
Browse files Browse the repository at this point in the history
  • Loading branch information
jdanyow committed Feb 10, 2016
1 parent ec490aa commit a280d27
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/repeat-utilities.js
Expand Up @@ -109,5 +109,7 @@ export function isOneTime(expression) {
export function updateOneTimeBinding(binding) {
if (binding.call && binding.mode === oneTime) {
binding.call(sourceContext);
} else if (binding.updateOneTimeBindings) {
binding.updateOneTimeBindings();
}
}

0 comments on commit a280d27

Please sign in to comment.