dataset on SVG doesn't work in Chrome 49

This commit is contained in:
tophf 2017-04-18 21:38:22 +03:00
parent 1572a0fbfe
commit a11fca48fb

View File

@ -70,7 +70,9 @@ function initGlobalEvents() {
window.onbeforeunload = rememberScrollPosition;
$$('[data-toggle-on-click]').forEach(el => {
el.onclick = () => $(el.dataset.toggleOnClick).classList.toggle('hidden');
// dataset on SVG doesn't work in Chrome 49-??, works in 57+
const target = $(el.getAttribute('data-toggle-on-click'));
el.onclick = () => target.classList.toggle('hidden');
});
enforceInputRange($('#manage.newUI.targets'));