view bits.js @ 128:817c3988afc7 website tip

Add a page about the Vamp Plugin Pack, including links to download mirrors
author Chris Cannam
date Tue, 11 Aug 2020 16:41:11 +0100
parents 16bcb88b430a
children
line wrap: on
line source

function togglePlugin(id) {
    var e = document.getElementById('plugs-' + id);
    var b = document.getElementById('plugs-showhide-' + id);
    if (window.getComputedStyle(e).display != 'none') {
	e.style.display = 'none';
	b.innerHTML = '▶ More';
    } else {
	e.style.display = 'block';
	b.innerHTML = '▼ Less';
    }
}