diff options
author | Luke "Jared" Bennett <lbennett@gitlab.com> | 2016-08-24 11:25:06 +0000 |
---|---|---|
committer | Luke "Jared" Bennett <lbennett@gitlab.com> | 2016-08-24 11:25:06 +0000 |
commit | 5ddb51ba5a4c58db86645424211783af4e390166 (patch) | |
tree | 311d99a82b9c5ad9cff65bd3c8210e4a17649922 /app | |
parent | 02591b043052eb4f8041f8cf51546fab272d7b61 (diff) | |
download | gitlab-ce-5ddb51ba5a4c58db86645424211783af4e390166.tar.gz |
Update abuse_reports.js.es6 with prettier `window.gl` assignmentAbuseReports-should-use-prettier-window-gl-assignment
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/javascripts/abuse_reports.js.es6 | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/assets/javascripts/abuse_reports.js.es6 b/app/assets/javascripts/abuse_reports.js.es6 index 748084b0307..2fe46b9fd06 100644 --- a/app/assets/javascripts/abuse_reports.js.es6 +++ b/app/assets/javascripts/abuse_reports.js.es6 @@ -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 = {})); |