File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 172172.custom-select > .dropdown-menu > .custom-select-action > button {
173173 border-radius : 0 ;
174174 background-image : none;
175+ }
176+ .custom-select > .dropdown-menu : before {
177+ border : 0 ;
175178}
Original file line number Diff line number Diff line change @@ -183,8 +183,8 @@ <h3>Nested</h3>
183183 $scope . growableOptions = {
184184 displayText : 'Select or add a new item...' ,
185185 addText : 'Add new item' ,
186- onAdd : function ( ) {
187- var newItem = 'Item ' + ( $scope . growable . length + 1 ) ;
186+ onAdd : function ( text ) {
187+ var newItem = 'Item ' + text ;
188188 $scope . growable . push ( newItem ) ;
189189 return newItem ;
190190 }
Original file line number Diff line number Diff line change 347347 } ;
348348
349349 childScope . add = function ( ) {
350- $q . when ( options . onAdd ( ) , function ( item ) {
350+ $q . when ( options . onAdd ( childScope . searchTerm ) , function ( item ) {
351351 if ( ! item ) return ;
352352
353353 var locals = { } ;
You can’t perform that action at this time.
0 commit comments