-
Notifications
You must be signed in to change notification settings - Fork 27.5k
feat(select): allow multiline ng-options #5629
Conversation
This patch allows the ng-options value of a <select> element to span multiple lines, which would previously throw an error when used with filters. Closes angular#5602
I'm sorry, but I wasn't able to verify your CLA signature. CLA signature is required for any code contributions to AngularJS. Please sign our CLA and ensure that the CLA signature email address and the email address in this PR's commits match. If you signed the CLA as a corporation, please let me know the company's name. Thanks a bunch! PS: If you signed the CLA in the past then most likely the email addresses don't match. Please sign the CLA again or update the email address in the commit of this PR. |
Hi Igor, I signed the CLA just after I added the commit with the email address ajay@roopakalu.com. Should I sign it again? |
@@ -129,7 +129,7 @@ var ngOptionsDirective = valueFn({ terminal: true }); | |||
// jshint maxlen: false | |||
var selectDirective = ['$compile', '$parse', function($compile, $parse) { | |||
//0000111110000000000022220000000000000000000000333300000000000000444444444444444000000000555555555555555000000066666666666666600000000000000007777000000000000000000088888 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you should also update this regexp grouping cheat-sheet
you used a different email address in the commit (see: https://github.com/angular/angular.js/pull/5629.patch) please either update the commit or sign the CLA again with the email address used in the commit. |
Update the regexp grouping comment to reflect the changes needed for multiline expressions in ng-options for <select>. Closes angular#5602
I have now signed the CLA again with the correct email address, sorry about that! |
CLA signature verified! Thank you! Someone from the team will now triage your PR and it will be processed based on the determined priority (doc updates and fixes with tests are prioritized over other changes). |
Landed 8ace807 |
This patch allows the ng-options value of a element to span multiple lines, which would previously throw an error when used with filters. Closes #5602