Skip to content
Snippets Groups Projects

Resolve "Use JS template strings in weekselect.js"

Merged Julian requested to merge 90-change-weekselect-js-to-js-template-strings into master
All threads resolved!
Files
2
var data = getJSONScript("week_select");
function goToCalendarWeek(cw, year) {
window.location.href = data.dest + year + "/" + cw;
window.location.href = data.dest.replace("year", year).replace("cw", cw);
}
function onCalendarWeekChanged(where) {
Loading