Skip to content
This repository has been archived by the owner on Feb 22, 2018. It is now read-only.

Commit

Permalink
fix(compiler): don't wait indefinitly for non-null value on =>!
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelgj authored and mhevery committed Feb 20, 2014
1 parent c38989a commit 5451d63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/core_dom/compiler.dart
Original file line number Diff line number Diff line change
Expand Up @@ -214,10 +214,10 @@ class Compiler {
(value, _) {
if (dstPathFn.assign(controller, value) != null) {
watch.remove();
notify();
}
},
filters: filters);
notify();
};
break;
case '&':
Expand Down

0 comments on commit 5451d63

Please sign in to comment.