Improve clickable items #45

Merged
bilal.catic merged 5 commits from improve-clickable-items into master 2019-10-15 21:38:48 +02:00
Showing only changes of commit 2a1361733f - Show all commits

View File

@@ -1,16 +1,17 @@
<form method="POST" id="form-real-estate-type"> <form method="POST" id="form-real-estate-type">
<div class="row center-align"> <div class="row center-align">
<ul class="collection with-header"> <div class="collection">
<% for(const realEstateType of realEstateTypes) { %> <% for(const realEstateType of realEstateTypes) { %>
<li class="collection-item">
<div id="<%= realEstateType.id %>" onclick="saveAndSubmit(this.id)"><%= realEstateType.title %> <a href="#" class="collection-item"
<a href="#" class="kivi-color secondary-content"> id="<%= realEstateType.id %>"
<i class="material-icons">send</i> onclick="saveAndSubmit(this.id)"
</a> >
</div> <%= realEstateType.title %>
</li> </a>
<% } %> <% } %>
</ul> </div>
<input type="hidden" name="realEstateType" id="realEstateType" /> <input type="hidden" name="realEstateType" id="realEstateType" />
</div> </div>
</form> </form>