summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/namespace_select.js
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2017-01-11 23:27:41 -0500
committerMike Greiling <mike@pixelcog.com>2017-01-18 17:18:40 -0600
commit04eff5fdb07a78a1980722bd9d5a63360a423e8a (patch)
treecc0c135cbf6152e4c3904c559b44859ce60522e3 /app/assets/javascripts/namespace_select.js
parent96931b1748a8f9daac697d624029a7473ad258a2 (diff)
downloadgitlab-ce-04eff5fdb07a78a1980722bd9d5a63360a423e8a.tar.gz
resolve all x-spacing and no-spaced-x eslint violations
Diffstat (limited to 'app/assets/javascripts/namespace_select.js')
-rw-r--r--app/assets/javascripts/namespace_select.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/namespace_select.js b/app/assets/javascripts/namespace_select.js
index 40666aa3ae8..514556ade0b 100644
--- a/app/assets/javascripts/namespace_select.js
+++ b/app/assets/javascripts/namespace_select.js
@@ -1,8 +1,8 @@
-/* eslint-disable func-names, space-before-function-paren, no-var, space-before-blocks, prefer-rest-params, wrap-iife, one-var, vars-on-top, one-var-declaration-per-line, comma-dangle, object-shorthand, no-else-return, prefer-template, quotes, prefer-arrow-callback, no-param-reassign, no-cond-assign, max-len */
+/* eslint-disable func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, one-var, vars-on-top, one-var-declaration-per-line, comma-dangle, object-shorthand, no-else-return, prefer-template, quotes, prefer-arrow-callback, no-param-reassign, no-cond-assign, max-len */
/* global Api */
(function() {
- var bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
+ var bind = function(fn, me) { return function() { return fn.apply(me, arguments); }; };
window.NamespaceSelect = (function() {
function NamespaceSelect(opts) {