change sale and rent action title

This commit is contained in:
Bilal Catic
2019-11-18 18:56:34 +01:00
parent e4edc24cad
commit ade09f6f15
2 changed files with 4 additions and 4 deletions

View File

@@ -72,12 +72,12 @@ const AD_TYPE = {
AD_TYPE_SALE: {
id: 1,
stringId: "SALE",
title: "Prodaja"
title: "Kupi"
},
AD_TYPE_RENT: {
id: 2,
stringId: "RENT",
title: "Najam"
title: "Unajmi"
},
AD_TYPE_REQUEST: {
id: 3,

View File

@@ -10,10 +10,10 @@
<form method="POST" name="welcomeForm">
<div class="row center-align">
<div class="col s5 m4 l3 push-s1 push-m2 push-l3">
<a href="#" onclick="saleClick()" class="welcome-center-button btn">Prodaja</a>
<a href="#" onclick="saleClick()" class="welcome-center-button btn">Kupi</a>
</div>
<div class="col s5 m4 l3 push-s1 push-m2 push-l3">
<a href="#" onclick="rentClick()" class="welcome-center-button btn">Najam</a>
<a href="#" onclick="rentClick()" class="welcome-center-button btn">Unajmi</a>
</div>
</div>
<input type="hidden" id="adType" name="adType">