Skip to content

Commit

Permalink
Merge pull request #47 from ushahidi/835-the-missing-save-button
Browse files Browse the repository at this point in the history
fixed button hidding
  • Loading branch information
willdoran committed Nov 20, 2015
2 parents 588482e + b49e019 commit 84d15e9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions server/www/templates/sets/collection-editor.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@
<translate>set.featured_collection</translate>
</label>
</div>
<div ng-show="collection.id" class="clearfix">
<div ng-if="collection.id" class="clearfix">
<label class="input-label" translate>set.delete_collection</label>
<button ng-click="deleteCollection()" type="button" class="button-destructive icon-only-when-small alt trash">
<span translate>nav.delete</span>
</button>
</div>
</div>

<div class="modal-submit clearfix">
<button type="button" class="button-primary" ng-click="saveCollection(cpyCollection)" translate>set.save_set</button>
<div class="divider white"></div>
<div class="modal-submit">
<button type="button" ng-click="saveCollection(cpyCollection)" translate>set.save_set</button>
</div>
</modal>
</div>

0 comments on commit 84d15e9

Please sign in to comment.