Skip to content
Snippets Groups Projects
Commit b3917d48 authored by Bryce Johnson's avatar Bryce Johnson
Browse files

Set defaults in constructor, in case opts are undefined.

parent 7beb9f34
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -14,9 +14,9 @@
global.BlobCiYamlSelector = BlobCiYamlSelector;
 
class BlobCiYamlSelectors {
constructor({ editor, $dropdowns = $('.js-gitlab-ci-yml-selector') }) {
constructor({ editor, $dropdowns }) {
this.editor = editor;
this.$dropdowns = $dropdowns;
this.$dropdowns = $dropdowns || $('.js-gitlab-ci-yml-selector');
this.initSelectors();
}
 
Loading
Loading
((global) => {
 
class Profile {
constructor({ form = $('.edit-user') } = {}) {
constructor({ form }) {
this.onSubmitForm = this.onSubmitForm.bind(this);
this.form = form;
this.form = form || $('.edit-user');
this.bindEvents();
this.initAvatarGlCrop();
}
Loading
Loading
Loading
Loading
@@ -9,20 +9,13 @@
};
 
class SearchAutocomplete {
constructor({
wrap = $('.search'),
optsEl = wrap.find('.search-autocomplete-opts'),
autocompletePath = optsEl.data('autocomplete-path'),
projectId = (optsEl.data('autocomplete-project-id') || ''),
projectRef = (optsEl.data('autocomplete-project-ref') || '')
} = {}) {
constructor({ wrap, optsEl, autocompletePath, projectId, projectRef }) {
this.bindEventContext();
this.wrap = wrap;
this.optsEl = optsEl;
this.autocompletePath = autocompletePath;
this.projectId = projectId;
this.projectRef = projectRef;
this.wrap = wrap || $('.search');
this.optsEl = optsEl || wrap.find('.search-autocomplete-opts');
this.autocompletePath = autocompletePath || optsEl.data('autocomplete-path');
this.projectId = projectId || (optsEl.data('autocomplete-project-id') || '');
this.projectRef = projectRef || (optsEl.data('autocomplete-project-ref') || '');
this.dropdown = wrap.find('.dropdown');
this.dropdownContent = this.dropdown.find('.dropdown-content');
this.locationBadgeEl = this.getElement('.location-badge');
Loading
Loading
((global) => {
 
class Todos {
constructor({ el = $('.js-todos-options') }) {
constructor({ el }) {
this.allDoneClicked = this.allDoneClicked.bind(this);
this.doneClicked = this.doneClicked.bind(this);
this.el = el;
this.el = el || $('.js-todos-options');
this.perPage = el.data('perPage');
this.clearListeners();
this.initBtnListeners();
Loading
Loading
Loading
Loading
@@ -59,10 +59,10 @@ content on the Users#show page.
*/
((global) => {
class UserTabs {
constructor ({ defaultAction = 'activity', action = defaultAction, parentEl }) {
constructor ({ defaultAction, action, parentEl }) {
this.loaded = {};
this.defaultAction = defaultAction;
this.action = action;
this.defaultAction = defaultAction || 'activity';
this.action = action || this.defaultAction;
this.$parentEl = $(parentEl) || $(document);
this._location = window.location;
this.$parentEl.find('.nav-links a')
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment