Skip to content

Instantly share code, notes, and snippets.

@luizcarraro
Created October 1, 2019 22:45
Show Gist options
  • Save luizcarraro/eaffd9a7d3932e04d8800d8158340f05 to your computer and use it in GitHub Desktop.
Save luizcarraro/eaffd9a7d3932e04d8800d8158340f05 to your computer and use it in GitHub Desktop.
Inicializa o Framework7 no ember-cli
/* global Framework7 */
import { schedule } from '@ember/runloop';
export function initialize() {
return schedule('afterRender', function () {
new Framework7({
theme : 'md'
});
});
}
export default {
name: 'framework7',
initialize
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment