mirror of
https://github.com/scratchfoundation/scratch-desktop.git
synced 2024-12-23 06:02:30 -05:00
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:
parent
897a9d26bc
commit
4c838c01be
1 changed files with 0 additions and 16 deletions
|
@ -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('/');
|
||||
|
||||
|
|
Loading…
Reference in a new issue