02.07.2024, 07:19
Add this to Custom JS, change the path comparison string at line 5 as needed:
Code:
$(function() {
var loc = window.location;
var path = loc.pathname + loc.search;
if (path == '/scada-vis/trends?id=1,3,5&mode=week&multiple=1') {
$('.title').text('Room temperature');
}
});