angularjs - AngularUI Bootstrap Modal template file -


i trying implement bootstrap modal http://angular-ui.github.io/bootstrap/ (pls. search modal). templateurl refers mymodalcontent.html. but, not find file. can shed light on file?

thanks in advance!

it template written in script tag

<script type="text/ng-template" id="mymodalcontent.html">     <div class="modal-header">         <h3 class="modal-title">i'm modal!</h3>     </div>     <div class="modal-body">         <ul>             <li ng-repeat="item in items">                 <a ng-click="selected.item = item">{{ item }}</a>             </li>         </ul>         selected: <b>{{ selected.item }}</b>     </div>     <div class="modal-footer">         <button class="btn btn-primary" ng-click="ok()">ok</button>         <button class="btn btn-warning" ng-click="cancel()">cancel</button>     </div> </script> 

Comments

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -