module.html 417 B

12345678
  1. <div ng-controller='stringquery'>
  2. <h4 ng-class="{'ng-cloak': !panel.title}">{{panel.title}}</h4>
  3. <form class="input-append" style="margin-bottom:0px; white-space:nowrap;">
  4. <label><small>{{panel.label}}</small></label>
  5. <input type="text" ng-model="panel.query" style="width:90%">
  6. <button type="submit" class="btn" ng-click="send_query(panel.query)"><i class="icon-search"></i></button>
  7. </form>
  8. </div>