From 3b898664eea9913b6b25261d7310a61de476d173 Mon Sep 17 00:00:00 2001 From: Mikk Kirstein Date: Tue, 14 May 2013 20:14:06 +0300 Subject: fix(ngValue): made ngValue to write value attribute to element --- src/ng/directive/input.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ng/directive/input.js') diff --git a/src/ng/directive/input.js b/src/ng/directive/input.js index 376d5b7d..246c827e 100644 --- a/src/ng/directive/input.js +++ b/src/ng/directive/input.js @@ -1298,7 +1298,7 @@ var ngValueDirective = function() { } else { return function(scope, elm, attr) { scope.$watch(attr.ngValue, function valueWatchAction(value) { - attr.$set('value', value, false); + attr.$set('value', value); }); }; } -- cgit v1.2.3