mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-07 09:10:45 +02:00
Enable marketplace item test for avatar url
This commit is contained in:
parent
8f5923d562
commit
645ad2bb7a
1 changed files with 6 additions and 2 deletions
|
@ -76,8 +76,12 @@ Rectangle {
|
|||
|
||||
property var actions: {
|
||||
"forward": function(resource, assetType){
|
||||
if ("application" == assetType) {
|
||||
Commerce.openApp(resource);
|
||||
switch(assetType) {
|
||||
case "application":
|
||||
Commerce.openApp(resource);
|
||||
break
|
||||
case "avatar":
|
||||
MyAvatar.useFullAvatarURL(resource);
|
||||
}
|
||||
// XXX support other resource types here.
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue