mirror of
https://github.com/overte-org/overte.git
synced 2025-04-26 00:56:17 +02:00
Merge pull request #11307 from davidkelly/dk/commerceRegression
Regression in injection script
This commit is contained in:
commit
ee70df502e
1 changed files with 1 additions and 1 deletions
|
@ -134,7 +134,7 @@
|
||||||
if (parseInt(cost) > 0) {
|
if (parseInt(cost) > 0) {
|
||||||
var priceElement = $(this).find('.price')
|
var priceElement = $(this).find('.price')
|
||||||
priceElement.css({ "width": "auto", "padding": "3px 5px", "height": "26px" });
|
priceElement.css({ "width": "auto", "padding": "3px 5px", "height": "26px" });
|
||||||
priceElement.text(parseFloat(cost / 100).toFixed(2) + ' HFC');
|
priceElement.text(cost + ' HFC');
|
||||||
priceElement.css({ "min-width": priceElement.width() + 10 });
|
priceElement.css({ "min-width": priceElement.width() + 10 });
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue