floating price on item list

This commit is contained in:
Senad Uka
2015-06-13 03:53:42 +02:00
parent c27e08a682
commit 0c305d3c40
4 changed files with 14 additions and 11 deletions

View File

@@ -36,7 +36,7 @@ var SingleItem = React.createClass({
<div style={{height: "110px"}} className="item_name_and_price">
<p><span className="text-uppercase">{ this.props.item.get('brand') ? this.props.item.get('brand').name : '' }</span>
<br /><span className="text-capitalize">{ this.props.item.get('name') }</span></p>
<h4>{ Globals.FormatCurrency(this.props.item.get('list_price')) }</h4>
<h4 className="item_floating_price">{ Globals.FormatCurrency(this.props.item.get('list_price')) }</h4>
</div>
</div>
</div>