Greetings,
I keep getting this error in Mozilla
TypeError: href_array[0].endsWith is not a function
.../daviz-view.js
Line 1946
referring to this
jQuery(document).ready(function($){
if (jQuery.browser.mozilla){
var href = document.location.href;
var href_array = href.split("#");
if (!href_array[0].endsWith("/")){
href_array[0] = href_array[0] + "/";
var href2 = href_array.join("#");
document.location = href2;
}
}
// end of workaround
and I have found that this workaround was added to fix this
Bug #9941,
but it is interfering with my ability to run js in Mozilla (and I assume IE).
Has anyone experienced this or have advice on how best to address it?
Cheers!
Eric