Tagged in

Addons

The Ember Way
The Ember Way
Finding the sweet spot of productivity and performance
More information
Followers
1.2K
Elsewhere
More, on Medium

Building a Keyboard Manager Service in Ember.JS

As part of a large refactor we recently completed for one of our clients, Fitbot, we needed to handle keyboard shortcuts. For example, Command+Enter should trigger a ‘save’ action, Shift+Enter should add a workout item, Escape should close the…


Testing flexi breakpoints

Flexi is an ember addon that enables you to factor out your device-specific layouts into individual template files.

An example structure for a posts route might be:

app/
templates/
posts/
-layouts/
mobile.hbs…

Route Closure Actions in Ember.js

In my previous post, I wrote about moving singleton state in Controllers into Services that back…