This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1>Hello World</h1> | |
Hello {{name}} | |
<strong>I was loaded from a URL!</strong> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
App.SelectBoxComponent = Ember.Component.extend({ | |
// Container is <div class="btn-group app-selectbox"> | |
classNames: ["btn-group", "app-selectbox"], | |
tagName: "div", | |
// Set attribute "fullWidth=true" to expand 100% | |
fullWidth: false, | |
classNameBindings: ["fullWidth"], | |
// Source data (the same as Ember.Select) |
NewerOlder