framework/ember/app/components/ui/controls/select-input.js
2015-01-03 21:51:47 +10:30

8 lines
296 B
JavaScript

import Ember from 'ember';
export default Ember.View.extend({
tagName: 'span',
classNames: ['select'],
layout: Ember.Handlebars.compile('{{view "select" content=view.content optionValuePath=view.optionValuePath optionLabelPath=view.optionLabelPath value=view.value}} {{fa-icon "sort"}}')
});