I made a typo here which produced no error in Google development tools.
<input type="number" value.bind="value | number & updateTrigger:'blur" placeholder="${placeholder}">
The typo is the missing ` after blur, i.e.
number & updateTrigger: 'blur"
instead of
number & updateTrigger: 'blur'"
The result of this typo is that the binding does not get updated. Of course my app completely stopped working … boy did I get into a panic …
I think I raised something similar to this some time ago.
Perhaps, as with the previous typo error that got fixed in the compiler, the same could be done for this one?
Thanks
Jeremy