client/app/slides/dataEditor.html
author rougeronj
Tue, 24 Mar 2015 17:45:31 +0100
changeset 36 160c3d2633f4
parent 4 client/app/slideshow/dataEditor.html@28208a0ad8b9
child 40 4b3bebe4355d
permissions -rw-r--r--
moove dataEditor to slides component
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
     1
<div>
4
28208a0ad8b9 edit slide by url
cavaliet
parents: 0
diff changeset
     2
<div ng-hide="slide.editMode">
0
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
     3
  <h4>{{slide.user_title}}</h4>
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
  <p>{{slide.user_description}}</p>
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
     5
  <p><em>{{slide.tags.join(', ')}}</em></p>
4
28208a0ad8b9 edit slide by url
cavaliet
parents: 0
diff changeset
     6
  <p class="text-right"><button id="btn-search-annotations" class="btn" ng-click="slide.editMode=true"><span class="glyphicon glyphicon-pencil"></span></button></p>
0
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
     7
</div>
4
28208a0ad8b9 edit slide by url
cavaliet
parents: 0
diff changeset
     8
<div ng-show="slide.editMode">
0
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
     9
  <input type="text" class="form-control" ng-model='slide.user_title'></input>
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    10
  <textarea class="form-control editor-textarea" ng-model='slide.user_description'></textarea>
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    11
  <input type="text" class="form-control" ng-model='slide.tags'></input>
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    12
  <p class="text-right"><button id="btn-search-annotations" class="btn" ng-click="slidesave()"><span class="glyphicon glyphicon-ok"></span></button></p>
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    13
</div>
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    14
</div>