Add Broken Url Report

This commit is contained in:
Alezia Kurdis 2021-02-27 00:31:02 -05:00 committed by GitHub
parent 9b5a1b82e1
commit 2fd648f881
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -413,12 +413,14 @@ EntityListTool = function(shouldUseEditTabletApp) {
alignGridToSelection();
} else if (data.type === 'alignGridToAvatar') {
alignGridToAvatar();
} else if (data.type === 'brokenUrlReport') {
brokenUrlReport(selectionManager.selections);
} else if (data.type === 'toggleGridVisibility') {
toggleGridVisibility();
} else if (data.type === 'toggleSnapToGrid') {
that.toggleSnapToGrid();
that.toggleSnapToGrid();
}
};
webView.webEventReceived.connect(onWebEventReceived);