This repository was archived by the owner on Apr 12, 2024. It is now read-only.
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
Registering watch seems to trigger it one too many times #12983
Closed
Description
http://plnkr.co/edit/brHNIEoTQxNQF9eZikgJ?p=preview
It contains a template:
<p>Hello {{log('A')}} {{log('B')}}!</p>
Run the above plunker and open console. I would expect the console to print: A, B
and then A, B
as second digest runs. Instead I see A, A, B, B
and then A, B
when second digest runs.
Is this a bug or intended behavior?