aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/ng/directive/input.js2
-rw-r--r--test/ng/directive/inputSpec.js12
2 files changed, 13 insertions, 1 deletions
diff --git a/src/ng/directive/input.js b/src/ng/directive/input.js
index 0c0b2df8..2d3210d5 100644
--- a/src/ng/directive/input.js
+++ b/src/ng/directive/input.js
@@ -1335,7 +1335,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);
});
};
}
diff --git a/test/ng/directive/inputSpec.js b/test/ng/directive/inputSpec.js
index 86fad41a..36fb754d 100644
--- a/test/ng/directive/inputSpec.js
+++ b/test/ng/directive/inputSpec.js
@@ -1136,6 +1136,18 @@ describe('input', function() {
describe('ngValue', function() {
+ it('should update the dom "value" property and attribute', function() {
+ compileInput('<input type="submit" ng-value="value">');
+
+ scope.$apply(function() {
+ scope.value = 'something';
+ });
+
+ expect(inputElm[0].value).toBe('something');
+ expect(inputElm[0].getAttribute('value')).toBe('something');
+ });
+
+
it('should evaluate and set constant expressions', function() {
compileInput('<input type="radio" ng-model="selected" ng-value="true">' +
'<input type="radio" ng-model="selected" ng-value="false">' +