Update abuse_reports.js.es6 with prettier `window.gl` assignment

This commit is contained in:
Luke "Jared" Bennett 2016-08-24 11:25:06 +00:00
parent 02591b0430
commit 5ddb51ba5a
1 changed files with 1 additions and 2 deletions

View File

@ -1,4 +1,3 @@
window.gl = window.gl || {};
((global) => {
const MAX_MESSAGE_LENGTH = 500;
const MESSAGE_CELL_SELECTOR = '.abuse-reports .message';
@ -36,4 +35,4 @@ window.gl = window.gl || {};
}
global.AbuseReports = AbuseReports;
})(window.gl);
})(window.gl || (window.gl = {}));