Revert "Add last-resort hook to stop link navigation"

This reverts commit c8f6b38df2. It caused
the menus (like File -> Save) not to work.
This commit is contained in:
Christopher Willis-Ford 2018-12-21 12:38:09 -08:00
parent 897a9d26bc
commit 4c838c01be

View file

@ -9,22 +9,6 @@ import styles from './app.css';
const defaultProjectId = 0;
const captureClick = function (ev) {
for (const element of ev.path) {
if (element.href) {
// prevent clicking links
// this is a last-resort test: if we get here that means there's work to do in the GUI
console.warn(`Suppressing click on link to ${element.href}`);
ev.preventDefault();
ev.stopPropagation();
return false;
}
}
};
document.addEventListener('DOMContentLoaded', () => {
document.addEventListener('click', captureClick, true);
});
// Register "base" page view
// analytics.pageview('/');