Ensure that clicking a link does not close the conversation

This commit is contained in:
Evan Hahn 2020-10-07 16:49:21 -05:00 committed by Josh Perez
parent 9002b21a6b
commit 776b500142
4 changed files with 0 additions and 19 deletions

View file

@ -1,13 +0,0 @@
/* global extension: false */
// eslint-disable-next-line func-names
(function() {
// Browser specific functions for Chrom*
window.extension = window.extension || {};
extension.windows = {
onClosed(callback) {
window.addEventListener('beforeunload', callback);
},
};
})();