Skip to content

Commit

Permalink
[TBN] Modif des boutons
Browse files Browse the repository at this point in the history
  • Loading branch information
tbeghin committed Sep 15, 2016
1 parent 783b1d7 commit 09d1158
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions views/index.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
<th>Date de déploiement</th>
<td ng-repeat="deploy in deployments">
<label ng-show="!deployDateEdit" id="deployDateLabel{{$index}}" for="deployDateInput{{$index}}">{{deploy.date}}</label>
<input ng-show="deployDateEdit" id="deployDateInput{{$index}}" type="text" value="{{deploy.date}}" size="15">
<input ng-show="deployDateEdit" id="deployDateInput{{$index}}" type="text" ng-model="deploy.date" size="15">
</td>
<td style="text-align: center">
<button ng-show="!deployDateEdit" type="button" ng-click="deployDateEdit = !deployDateEdit" class="btn btn-default">
Expand All @@ -96,7 +96,7 @@
<th>Lot</th>
<td ng-repeat="deploy in deployments">
<label ng-show="!lotEdit" id="lotLabel{{$index}}" for="lotInput{{$index}}">{{deploy.lot}}</label>
<input ng-show="lotEdit" id="lotInput{{$index}}" type="text" value="{{deploy.lot}}" size="15">
<input ng-show="lotEdit" id="lotInput{{$index}}" type="text" ng-model="deploy.lot" size="15">
</td>
<td style="text-align: center">
<button ng-show="!lotEdit" type="button" ng-click="lotEdit = !lotEdit" class="btn btn-default">
Expand Down

0 comments on commit 09d1158

Please sign in to comment.