Skip to content
Snippets Groups Projects
Unverified Commit 0e2dd06f authored by Luke Bennett's avatar Luke Bennett
Browse files

Completed project filter dropdown, still need to move it from inline to...

Completed project filter dropdown, still need to move it from inline to ProjectSelect.js (or different)
parent beff8b9b
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -202,7 +202,6 @@
var ref, ref1, ref2, ref3, searchFields, selector, self;
this.el = el1;
this.options = options;
console.log(this.options);
this.updateLabel = bind(this.updateLabel, this);
this.hidden = bind(this.hidden, this);
this.opened = bind(this.opened, this);
Loading
Loading
Loading
Loading
@@ -56,7 +56,7 @@ module IssuablesHelper
project = Project.find_by(id: project_id)
 
if project
project.name_with_namespace || project.name
project.name_with_namespace
else
default_label
end
Loading
Loading
Loading
Loading
@@ -88,7 +88,13 @@
filterable: true,
selectable: true,
fieldName: 'project_id',
data: $projectDropdown.data('data')
data: $projectDropdown.data('data'),
clicked: function() {
if ($projectDropdown.hasClass('js-filter-submit')) {
console.log('booM!');
return $projectDropdown.closest('form').submit();
}
}
});
 
$('form.filter-form').on('submit', function (event) {
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