initial github commit

This commit is contained in:
2017-12-21 11:51:55 +01:00
commit 9936a38843
413 changed files with 12623 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
// Generated by CoffeeScript 1.12.5
import Ember from 'ember';
export default Ember.Component.extend({
classNames: ['ui-multi-select-container'],
labelProperty: 'name',
placeholder: 'Select',
options: [],
selected: [],
placeholder_text: Ember.computed('placeholder', function() {
var placeholder;
placeholder = this.get('placeholder');
if (is_translation_path(placeholder)) {
placeholder = t(placeholder, {
count: this.get('options.length')
});
}
return placeholder.htmlSafe();
})
});