mirror of
https://github.com/overte-org/overte.git
synced 2025-08-11 12:02:48 +02:00
Merge pull request #12023 from zfox23/commerce_fixAvailabileBug
Fix bug preventing 'get' buttons from working in Marketplace
This commit is contained in:
commit
91ed531421
1 changed files with 1 additions and 1 deletions
|
@ -415,7 +415,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
purchaseButton.on('click', function () {
|
purchaseButton.on('click', function () {
|
||||||
if ('availabile' === availability) {
|
if ('available' === availability) {
|
||||||
buyButtonClicked(window.location.pathname.split("/")[3],
|
buyButtonClicked(window.location.pathname.split("/")[3],
|
||||||
$('#top-center').find('h1').text(),
|
$('#top-center').find('h1').text(),
|
||||||
$('#creator').find('.value').text(),
|
$('#creator').find('.value').text(),
|
||||||
|
|
Loading…
Reference in a new issue