mirror of
https://github.com/overte-org/overte.git
synced 2025-04-26 20:57:09 +02:00
12 lines
No EOL
342 B
JavaScript
12 lines
No EOL
342 B
JavaScript
function loaded() {
|
|
bindExploreButtons();
|
|
}
|
|
|
|
function bindExploreButtons() {
|
|
$('#exploreClaraMarketplace').on('click', function() {
|
|
window.location = "https://clara.io/library?public=true"
|
|
})
|
|
$('#exploreHifiMarketplace').on('click', function() {
|
|
window.location = "http://www.highfidelity.com/marketplace"
|
|
})
|
|
} |