Skip to content

Instantly share code, notes, and snippets.

@03xb7
Last active September 12, 2018 17:15
Show Gist options
  • Select an option

  • Save 03xb7/44d899e56e2526a82e46 to your computer and use it in GitHub Desktop.

Select an option

Save 03xb7/44d899e56e2526a82e46 to your computer and use it in GitHub Desktop.
Wait for Phonegap's deviceready event before initializing an Ember application
import isOnCordova from '../utils/is-on-cordova';
export function initialize(container, application) {
application.deferReadiness();
document.addEventListener('deviceready', function() {
application.advanceReadiness();
}, false);
if(!isOnCordova()){
document.dispatchEvent(new Event('deviceready'));
}
}
export default {
name: 'cordova-device-ready',
initialize: initialize
};
export default function isOnCordova() {
return !!window.cordova;
}
@benjcal

benjcal commented Jul 18, 2016

Copy link
Copy Markdown

Awesome, thank you for this!

Two little things: L3 doesn't need container as an argument in the initialize function and in L15 can be just initialize

This is using ember 2.6

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment