mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 19:29:47 +02:00
CR fixes
This commit is contained in:
parent
c33d2aafda
commit
70cc6594c7
2 changed files with 1 additions and 2 deletions
|
@ -422,7 +422,7 @@ Item {
|
||||||
verticalAlignment: Text.AlignVCenter;
|
verticalAlignment: Text.AlignVCenter;
|
||||||
|
|
||||||
onLinkActivated: {
|
onLinkActivated: {
|
||||||
if(link == "#standaloneIncompatible") {
|
if (link === "#standaloneIncompatible") {
|
||||||
sendToPurchases({method: 'showStandaloneIncompatibleExplanation'});
|
sendToPurchases({method: 'showStandaloneIncompatibleExplanation'});
|
||||||
} else {
|
} else {
|
||||||
sendToPurchases({method: 'showPermissionsExplanation', itemType: root.itemType});
|
sendToPurchases({method: 'showPermissionsExplanation', itemType: root.itemType});
|
||||||
|
|
|
@ -114,7 +114,6 @@ Rectangle {
|
||||||
|
|
||||||
Component.onCompleted: {
|
Component.onCompleted: {
|
||||||
isStandalone = PlatformInfo.isStandalone();
|
isStandalone = PlatformInfo.isStandalone();
|
||||||
console.log(isStandalone ? "IS STANDALONE" : "ISN'T STANDALONE");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
HifiCommerceCommon.CommerceLightbox {
|
HifiCommerceCommon.CommerceLightbox {
|
||||||
|
|
Loading…
Reference in a new issue