OSDN Git Service

Initial commit after detached from Eos base.
[eos/zephyr.git] / client / app / components / board / board.html
1 <navbar></navbar>
2 <div class="container">
3 <div class="row">
4     <menubar></menubar>
5     <div class="page-header">
6         <h1>Board: {{noteName}}</h1>
7         <button class="btn btn-default"
8                 ng-click="save()">
9             save this note
10         </button>
11     </div>
12     <div ng-repeat="commandDirective in commandDirectives">
13         <my-command command="commandDirective.name" index="$index" params="commandDirectives.params"></my-command>
14     </div>
15     <button class="btn btn-default"
16             ng-click="addCommandDirective(); openCommandModal()">
17         <span class="glyphicon glyphicon-plus"></span>add command 
18     </button>
19 </div>
20 </div>