1 <div class="modal-header">
2 <button type="button" class="close" data-dismiss="modal" aria-hidden="true" ng-click="cancel()">×</button>
3 <h3>Custom Settings for a special widget</h3>
5 <div class="modal-body">
6 <form name="form" novalidate class="form-horizontal">
7 <p>I override the entire widget settings modal template. This can be used for maximum customization!</p>
8 <div class="form-group">
9 <label for="widgetTitle" class="col-sm-2 control-label">Title</label>
10 <div class="col-sm-10">
11 <input type="text" class="form-control" name="widgetTitle" ng-model="result.title">
16 <div class="modal-footer">
17 <button type="button" class="btn btn-default" ng-click="cancel()">fuhget about it</button>
18 <button type="button" class="btn btn-primary" ng-click="ok()">hell yea</button>