Skip to content

Instantly share code, notes, and snippets.

/* Put your CSS here */
html, body {
margin: 20px;
}
.table-container {
height: 600px;
}
@mattahorton
mattahorton / input-chosen-ember-component.js
Last active August 29, 2015 13:58 — forked from andriybuday/input-chosen-ember-component.js
A single-select version of andriybuday's multiple-select Ember Chosen.js component
App.InputChosenComponent = Ember.Component.extend(
init: ->
@_super()
return
# view properties
labelClasses: (->
@get("labelClass") + " control-label"
).property("labelClass")
inputContainerClasses: (->