aboutsummaryrefslogtreecommitdiffstats
path: root/src/service/formFactory.js
diff options
context:
space:
mode:
authorVojta Jina2011-11-30 12:23:58 -0800
committerVojta Jina2012-01-23 11:11:27 -0800
commit0196411dbe179afe24f4faa6d6503ff3f69472da (patch)
tree8c79c809b884af8385ad2695c4885b18a5efa369 /src/service/formFactory.js
parent992c790f0786fa45c1cc3710f29bf49c7c322ba7 (diff)
downloadangular.js-0196411dbe179afe24f4faa6d6503ff3f69472da.tar.bz2
refactor(scope.$watch): rearrange arguments passed into watcher (newValue, oldValue, scope)
As scopes are injected into controllers now, you have the reference anyway, so having scope as first argument makes no sense… Breaks $watcher gets arguments in different order (newValue, oldValue, scope)
Diffstat (limited to 'src/service/formFactory.js')
-rw-r--r--src/service/formFactory.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/service/formFactory.js b/src/service/formFactory.js
index 565b22a4..5d64131e 100644
--- a/src/service/formFactory.js
+++ b/src/service/formFactory.js
@@ -377,7 +377,7 @@ function $FormFactoryProvider() {
// Set the state to something we know will change to get the process going.
widget.$modelValue = Number.NaN;
// watch for scope changes and update the view appropriately
- modelScope.$watch(scopeGet, function(scope, value) {
+ modelScope.$watch(scopeGet, function(value) {
if (!equals(widget.$modelValue, value)) {
widget.$modelValue = value;
widget.$parseModel ? widget.$parseModel() : (widget.$viewValue = value);