fix regression: ability to toggle per-scope switches

pull/2/head
Raymond Hill 7 years ago
parent 6581071b01
commit f459f67e72
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

@ -1203,8 +1203,8 @@ function updateMatrixSwitches() {
}
function toggleMatrixSwitch(ev) {
if ( ev.target.localName === 'a' ) { return; }
var elem = ev.currentTarget;
if ( elem.target.localName === 'a' ) { return; }
var pos = elem.id.indexOf('_');
if ( pos === -1 ) { return; }
var switchName = elem.id.slice(pos + 1);

Loading…
Cancel
Save