You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
recently in feedback we got into a situation where an infinite digest was caused by a watch that returned an object with NaN values. we should be smart enough to consider two NaNs to be equal.
watcher = {
fn: listenFn,
last: Number.NaN, // NaN !== NaN. We used this to force $watch to fire on first run.
get: get,
exp: watchExp
};
If we apply the fix you suggested, and on first digest cycle the expression evaluates to NaN, then the function attached to watcher will not run at all even for the first time.
A workaround probably will be to have a firstRun boolean property attached to each watcher and delete it after firstrun
watcher = {
fn: listenFn,
last: Number.NaN, // NaN !== NaN. We used this to force $watch to fire on first run.
get: get,
exp: watchExp,
firstRun: true
};
//inside the digest function
if ((value = watch.get(current)) !== (last = watch.last) && !equals(value, last, !watcher.firstRun)} {
delete watcher.firstRun
}
//....
recently in feedback we got into a situation where an infinite digest was caused by a watch that returned an object with NaN values. we should be smart enough to consider two NaNs to be equal.
Test case: http://jsfiddle.net/IgorMinar/CHVbb/184/
The text was updated successfully, but these errors were encountered: