The Scrollbox Application no longer seems to use the “exact”
syntax for URL exclusion. Your below code seems to confirm this.
Can you please confirm? Thanks
for (var i = 0; i < this.settings.exclude_urls.length && !n; i++) {
var s =
this.settings.exclude_urls[i].toLowerCase();
s === “/” ? n = window.location.pathname == s : n = r.indexOf(s) !== -1
}
n || this.install()