8 lines
296 B
JavaScript
Raw Normal View History

2014-12-20 16:56:46 +10:30
import Ember from 'ember';
export default Ember.View.extend({
tagName: 'span',
classNames: ['select'],
2015-01-03 12:26:14 +10:30
layout: Ember.Handlebars.compile('{{view "select" content=view.content optionValuePath=view.optionValuePath optionLabelPath=view.optionLabelPath value=view.value}} {{fa-icon "sort"}}')
2014-12-20 16:56:46 +10:30
});