add deprecation message

isekai-main
Barış Soner Uşaklı 2 years ago
parent 9e574e0765
commit 3fcbc138ac

@ -16,18 +16,21 @@ utils.getLanguage = function () {
utils.makeNumbersHumanReadable = function (elements) {
console.warn('[deprecated] utils.makeNumbersHumanReadable is deprecated! Use {humanReadableNumber(value)} helper directly in the template');
elements.each(function () {
const $this = $(this);
const toFixed = $this.attr('data-toFixed') || 1;
$this.html(utils.makeNumberHumanReadable($(this).attr('title'), toFixed))
$this.html(utils.makeNumberHumanReadable($this.attr('title'), toFixed))
.removeClass('hidden');
});
};
utils.addCommasToNumbers = function (elements) {
console.warn('[deprecated] utils.addCommasToNumbers is deprecated! Use {formattedNumber(value)} helper directly in the template');
elements.each(function (index, element) {
$(element)
.html(utils.addCommas($(element).html()))
const $element = $(element);
$element
.html(utils.addCommas($element.html()))
.removeClass('hidden');
});
};

Loading…
Cancel
Save