mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 04:12:46 +02:00
filter priced items from marketplace
This commit is contained in:
parent
993cb0cfa0
commit
e1e9b78427
1 changed files with 2 additions and 1 deletions
|
@ -302,7 +302,8 @@
|
||||||
|
|
||||||
if (parseInt(cost) > 0) {
|
if (parseInt(cost) > 0) {
|
||||||
if (disable) {
|
if (disable) {
|
||||||
priceElement.html('N/A');
|
priceElement.html('N/A'); // In case the following fails
|
||||||
|
$(this).parent().parent().parent().parent().parent().css({"display": "none"}); // HRS FIXME
|
||||||
} else {
|
} else {
|
||||||
priceElement.css({ "width": "auto" });
|
priceElement.css({ "width": "auto" });
|
||||||
priceElement.html('<span class="hifi-glyph hifi-glyph-hfc" style="filter:invert(1);background-size:20px;' +
|
priceElement.html('<span class="hifi-glyph hifi-glyph-hfc" style="filter:invert(1);background-size:20px;' +
|
||||||
|
|
Loading…
Reference in a new issue