aboutsummaryrefslogtreecommitdiffstats
path: root/test/BinderSpec.js
AgeCommit message (Collapse)Author
2011-01-24fixed example rendering, add tests for it.Misko Hevery
2011-01-07change to keydown from keyup; add delayed $updateViewMisko Hevery
- There was a perceived lag when typing do to the fact that we were listening on the keyup event instead of keydown. The issue with keydown is that we can not read the value of the input field. To solve this we schedule a defer call and perform the model update then. - To prevent calling $eval on root scope too many times as well as to prevent drowning the browser with too many updates we now call the $eval only after 25ms and any additional requests get ignored. The new update service is called $updateView
2011-01-06converted last of tests to specsMisko Hevery