Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

fix(ngModelOptions): add textarea support #7292

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 15 additions & 12 deletions src/ng/directive/input.js
Original file line number Diff line number Diff line change
Expand Up @@ -1973,22 +1973,25 @@ var ngModelDirective = function() {
return {
require: ['ngModel', '^?form', '^?ngModelOptions'],
controller: NgModelController,
link: function(scope, element, attr, ctrls) {
// notify others, especially parent forms
link: {
pre: function(scope, element, attr, ctrls) {
// Pass the ng-model-options to the ng-model controller
if (ctrls[2]) {
ctrls[0].$options = ctrls[2].$options;
}
},
post: function(scope, element, attr, ctrls) {
// notify others, especially parent forms

var modelCtrl = ctrls[0],
formCtrl = ctrls[1] || nullFormCtrl;
var modelCtrl = ctrls[0],
formCtrl = ctrls[1] || nullFormCtrl;

formCtrl.$addControl(modelCtrl);
formCtrl.$addControl(modelCtrl);

// Pass the ng-model-options to the ng-model controller
if ( ctrls[2] ) {
modelCtrl.$options = ctrls[2].$options;
scope.$on('$destroy', function() {
formCtrl.$removeControl(modelCtrl);
});
}

scope.$on('$destroy', function() {
formCtrl.$removeControl(modelCtrl);
});
}
};
};
Expand Down
11 changes: 11 additions & 0 deletions test/ng/directive/inputSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -642,6 +642,17 @@ describe('input', function() {
expect(scope.name).toEqual('a');
});

it('should allow overriding the model update trigger event on text areas', function() {
compileInput(
'<textarea ng-model="name" name="alias" '+
'ng-model-options="{ updateOn: \'blur\' }"'+
'/>');

changeInputValueTo('a');
expect(scope.name).toBeUndefined();
browserTrigger(inputElm, 'blur');
expect(scope.name).toEqual('a');
});

it('should bind the element to a list of events', function() {
compileInput(
Expand Down