Advertisement
Guest User

Untitled

a guest
Oct 21st, 2014
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <tbody ui-sortable="sortableOptions" ng-model="questions">
  2. <tr ng-repeat="question in questions | filter:query | orderBy: 'order' ">
  3. <td>{{ question.order }}</td>
  4. <td>{{ question.meanName }}</td>
  5. <td>{{ question.fieldName }}</td>
  6. <td>@mdo</td>
  7. <td>
  8. <button type="button" class="btn btn-default btn-sm" ng-click="deleteQuestion(question._id)">
  9. <span class="ques-list glyphicon glyphicon-remove"></span> delete </button>
  10.  
  11.  
  12. </td>
  13. </tr>
  14. </tbody>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement