9feae49667
- Clan jubility breakdown - Displaying music rate and stats identically across all score pages - Ability to choose what jubility (legacy or new) to display and sort on all players. - Various tweaks and small quality of life improvements.
20 lines
631 B
JavaScript
20 lines
631 B
JavaScript
var Link = {
|
|
// Helper for taking server-rendered links with a component that we want
|
|
// to change client-side, and updating them based on parameters.
|
|
|
|
get: function(name, param, anchor) {
|
|
var uri = window.uris[name];
|
|
if (!param || !uri) {
|
|
if (!anchor) {
|
|
return uri;
|
|
} else {
|
|
return uri + '#' + anchor.toString();
|
|
}
|
|
} else if (!anchor) {
|
|
return uri.replace("/-1", "/" + param.toString());
|
|
} else {
|
|
return uri.replace("/-1", "/" + param.toString()) + '#' + anchor.toString();
|
|
}
|
|
},
|
|
};
|