Skip to content

Instantly share code, notes, and snippets.

@ear
Created May 9, 2015 20:24
Show Gist options
  • Save ear/9ee5fb81ed65c07fac3b to your computer and use it in GitHub Desktop.
Save ear/9ee5fb81ed65c07fac3b to your computer and use it in GitHub Desktop.
Ember FastClick
/* global FastClick */
import Ember from 'ember';
export function initialize() {
Ember.run.schedule('afterRender', () => FastClick.attach(document.body));
}
export default {
name: '01-fastclick',
initialize: initialize
};
app.import('bower_components/fastclick/lib/fastclick.js');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment