Results 6 comments of Luke

Does anyone have a quick fix for this?

I updated `md-select.hbs` to ``` {{label}} {{view "select" id=id content=content optionValuePath=optionValuePath optionLabelPath=optionLabelPath prompt=prompt value=value classNameBindings="validate:validate errors:invalid:valid" disabled=disabled }} {{#if errors}} {{errors.firstObject}} {{else}}   {{/if}} ``` and `md-select.js` ``` import Ember...

You can catch an enter key-press in a component using: ``` keyPress: function(e) { if(e.which === 13) { //Do Something here... } }, ``` You will probably need to extend...

Its slightly more complicated than I made out, and we don't want to serve a static site. Just cache the result of the fastboot rendered page so fastboot doesn't need...

Can't you pass through on the request object? If you add something to the request, you also have access to that within your fastboot ember application. Not sure if i'm...

I am encountering a similar issue, but the fix you have suggested doesn't refresh anything for me. When I press the next page arrow, the next items are correctly being...