We are having an issue with a regular dropdown located inside a modal used 
by an Angular component. This previously worked, but now with the upgrade 
to Chrome 47 does not anymore -- there are absolutely no errors generated 
on the javascript console, it is completely silent.


Moving the dropdown outside of the modal into a regular page works, so it 
is specifically related to being located inside a modal, and specifically 
something within an Angular component.


Angular 1.26 Chrome 47


<script type="text/ng-template" id="detail-modal.html">

    <div class="container-fluid">

        <div class="modal-header">

            Line Item Note

        </div>

        <div class="modal-body">


            <form name="modalForm" novalidate>


                <select name="invoiceAction" required 
ng-model="queryModel.selectedAction" ng-options="invoiceAction.code as 
invoiceAction.name for invoiceAction in queryModel.invoiceNoteActions" 
ng-change="invoiceActionChanged(queryModel.selectedAction)">

                    <option value="">Select Reason</option>

                </select>

                                      

            </form>

        </div>

    </div>

</script>

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to