21.01.2017, 07:35
Custom JS runs both visualizations, trends and schedulers. If you have some specific functions for visualization only, you can check the type like this:
Code:
$(function() {
if (!$('body').hasClass('usermode')) {
return;
}
// do something only in user visualization, not touch, trends, schedulers
});