This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/app/pods/protected/compare/controller.js
Matthew Dillon f0167c858d Checkin.
From what I can tell, the bottleneck is in selectize itself. Will drop
this and work on select2.
2015-11-13 08:16:53 -07:00

24 lines
576 B
JavaScript

import Ember from 'ember';
const { Controller } = Ember;
export default Controller.extend({
selectedStrains: null,
selectedCharacteristics: null,
actions: {
search: function(query) {
this.transitionToRoute('protected.compare.results', { queryParams: query });
},
updateStrainSelection: function(selection) {
console.log(selection);
this.set('selectedStrains', selection);
},
updateCharacteristicSelection: function(selection) {
console.log(selection);
this.set('selectedCharacteristics', selection);
},
}
});