mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01: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"
|
|
})
|
|
} |