mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-06 20:32:56 +02:00
Cleanup FIXME
This commit is contained in:
parent
a1276ba899
commit
34fb849536
2 changed files with 2 additions and 18 deletions
|
@ -161,7 +161,7 @@ Rectangle {
|
|||
id: titleBarContainer;
|
||||
z: 997;
|
||||
visible: false;
|
||||
height: 100; // HRS FIXME: get rid of the header and associated code entirely?
|
||||
height: 100;
|
||||
// Size
|
||||
width: parent.width;
|
||||
// Anchors
|
||||
|
|
|
@ -251,7 +251,6 @@
|
|||
}
|
||||
cost = $(this).closest('.col-xs-3').find('.item-cost').text();
|
||||
var costInt = parseInt(cost, 10);
|
||||
var disable = limitedCommerce && (costInt > 0);
|
||||
|
||||
$(this).closest('.col-xs-3').prev().attr("class", 'col-xs-6');
|
||||
$(this).closest('.col-xs-3').attr("class", 'col-xs-6');
|
||||
|
@ -260,23 +259,11 @@
|
|||
priceElement.css({
|
||||
"padding": "3px 5px",
|
||||
"height": "40px",
|
||||
"background": disable ? "grey" : "linear-gradient(#00b4ef, #0093C5)",
|
||||
"background": "linear-gradient(#00b4ef, #0093C5)",
|
||||
"color": "#FFF",
|
||||
"font-weight": "600",
|
||||
"line-height": "34px"
|
||||
});
|
||||
|
||||
if (parseInt(cost) > 0) {
|
||||
if (disable) {
|
||||
priceElement.html('N/A'); // In case the following fails
|
||||
$(this).parent().parent().parent().parent().parent().css({"display": "none"}); // HRS FIXME, oh and do I have to set display non-none in the other branch?
|
||||
} else {
|
||||
priceElement.css({ "width": "auto" });
|
||||
priceElement.html('<span class="hifi-glyph hifi-glyph-hfc" style="filter:invert(1);background-size:20px;' +
|
||||
'width:20px;height:20px;position:relative;top:5px;"></span> ' + cost);
|
||||
priceElement.css({ "min-width": priceElement.width() + 30 });
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
// change pricing to GET/BUY on button hover
|
||||
|
@ -395,9 +382,6 @@
|
|||
var cost = $('.item-cost').text();
|
||||
var costInt = parseInt(cost, 10);
|
||||
var availability = $.trim($('.item-availability').text());
|
||||
if (limitedCommerce && (costInt > 0)) {
|
||||
availability = '';
|
||||
}
|
||||
if (availability === 'available') {
|
||||
purchaseButton.css({
|
||||
"background": "linear-gradient(#00b4ef, #0093C5)",
|
||||
|
|
Loading…
Reference in a new issue