Created
October 1, 2019 22:45
-
-
Save luizcarraro/eaffd9a7d3932e04d8800d8158340f05 to your computer and use it in GitHub Desktop.
Inicializa o Framework7 no ember-cli
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
/* 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