diff --git a/src/ng/directive/validators.js b/src/ng/directive/validators.js index bfa20401ce4f..ef7650f10ceb 100644 --- a/src/ng/directive/validators.js +++ b/src/ng/directive/validators.js @@ -65,7 +65,7 @@ var maxlengthDirective = function() { ctrl.$validate(); }); ctrl.$validators.maxlength = function(modelValue, viewValue) { - return (maxlength < 0) || ctrl.$isEmpty(modelValue) || (viewValue.length <= maxlength); + return (maxlength < 0) || ctrl.$isEmpty(viewValue) || (viewValue.length <= maxlength); }; } }; diff --git a/test/ng/directive/validatorsSpec.js b/test/ng/directive/validatorsSpec.js index f22d3c8f130d..3eb352c8b859 100644 --- a/test/ng/directive/validatorsSpec.js +++ b/test/ng/directive/validatorsSpec.js @@ -410,6 +410,20 @@ describe('validators', function() { expect($rootScope.value).toBe(12345); expect($rootScope.form.input.$error.maxlength).toBeUndefined(); }); + + it('should validate emptiness against the viewValue', function() { + var inputElm = helper.compileInput(''); + + var ctrl = inputElm.controller('ngModel'); + spyOn(ctrl, '$isEmpty').andCallThrough(); + + ctrl.$parsers.push(function(value) { + return value + '678'; + }); + + helper.changeInputValueTo('12345'); + expect(ctrl.$isEmpty).toHaveBeenCalledWith('12345'); + }); });