Skip to content

Commit 9ca64c7

Browse files
committed
Add class to elements
1 parent c797727 commit 9ca64c7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ <h2 class="ui header">
3131
<div class="three wide left column">
3232
<!-- display all tags -->
3333
<div class="ui divided very relaxed animated selection list">
34-
<a class="item" ng-repeat="tag in tags" ng-click="logCtrl.clickTagFn($index, tag.tag)" ng-class="{ active: $index == tagSelectedIndex }">
34+
<a class="item tags-nav" ng-repeat="tag in tags" ng-click="logCtrl.clickTagFn($index, tag.tag)" ng-class="{ active: $index == tagSelectedIndex }">
3535
<div class="description">
3636
{{ tag.tag }}
3737
</div>
@@ -59,7 +59,7 @@ <h2 class="ui header">
5959
<input type="hidden" id="logKey" ng-model="logs[logSelectedIndex].key"></input>
6060

6161
<div class="ui right labeled fluid input">
62-
<input ng-model="logs[logSelectedIndex].title" placeholder="title..." ng-keyup="logCtrl.changedFn()"></input>
62+
<input ng-model="logs[logSelectedIndex].title" class="title" placeholder="title..." ng-keyup="logCtrl.changedFn()"></input>
6363
<div class="ui label">
6464
Title
6565
</div>
@@ -68,7 +68,7 @@ <h2 class="ui header">
6868
<div id="tags">
6969
<div class="ui right labeled left icon input">
7070
<i class="tags icon"></i>
71-
<input type="text" placeholder="Tags" ng-model="logs[logSelectedIndex].tags" ng-keyup="logCtrl.changedFn()">
71+
<input type="text" placeholder="Tags" class="tags" ng-model="logs[logSelectedIndex].tags" ng-keyup="logCtrl.changedFn()">
7272
<div class="ui tag label">
7373
Tags
7474
</div>
@@ -93,7 +93,7 @@ <h2 class="ui header">
9393

9494
<div class="ui form">
9595
<div class="field">
96-
<textarea id="logContent" ng-model="logs[logSelectedIndex].content" ng-keyup="logCtrl.changedFn()"></textarea>
96+
<textarea id="logContent" class="content" ng-model="logs[logSelectedIndex].content" ng-keyup="logCtrl.changedFn()"></textarea>
9797
</div>
9898
</div>
9999
</div>

0 commit comments

Comments
 (0)