mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-05-05 10:37:41 +02:00
12 lines
No EOL
325 B
JavaScript
12 lines
No EOL
325 B
JavaScript
function loaded() {
|
|
bindExploreButtons();
|
|
}
|
|
|
|
function bindExploreButtons() {
|
|
$('#exploreClaraMarketplace').on('click', function() {
|
|
window.location = "http://www.clara.io"
|
|
})
|
|
$('#exploreHifiMarketplace').on('click', function() {
|
|
window.location = "http://www.highfidelity.com/marketplace"
|
|
})
|
|
} |