/*
* @title !link
* @description toggle enable/disable links
* @include http://*
* @include https://*
* @license MIT License http://nrm.mit-license.org/2013
* @require
*/
Array.prototype.slice.call(document.querySelectorAll('a[href]')).forEach(function (link) {
var style = link.style;
// c.f. http://caniuse.com/pointer-events
style.pointerEvents = style.pointerEvents === 'none' ? '' : 'none'; // awful...
});