Closed imthenachoman closed 8 years ago
It works in Chrome but not IE. Changing to window.location makes it work for both.
window.location
// opens a tile link var openLink = tiles.openLink = function(tile, type, url) { if(type === "none") return; var holderID = tile.parentNode.parentNode.id; if(/^mailto:.*?@.*$/.test(url)) { window.location.href = d; // RIGHT HERE }
fixed in version 1.4
It works in Chrome but not IE. Changing to
window.location
makes it work for both.