1 <div class="floating-toolbox">
2 <div class="tabs primary-background-light">
3 <span tab-button class="active"><i class="zmdi zmdi-tag"></i></span>
4 <span tab-button><i class="zmdi zmdi-wrench"></i></span>
6 <div tab-content ng-controller="PageTagController" page-id="{{ $page->id or 0 }}">
7 <form ng-submit="saveTags()" >
9 <div class="padded tags">
10 <table class="no-style" style="width: 100%;">
11 <tr ng-repeat="tag in tags">
12 <td><input class="outline" type="text" ng-model="tag.name" ng-change="tagChange(tag)" ng-blur="tagBlur(tag)" placeholder="Tag"></td>
13 <td><input class="outline" type="text" ng-model="tag.value" ng-change="tagChange(tag)" ng-blur="tagBlur(tag)" placeholder="Tag Value (Optional)"></td>
17 <button class="button pos" type="submit">Save Tags</button>