cordova - Phonegap plugins with emberjs -
i'm new both phonegap , emberjs. have app working emberjs i'm trying add plugins. use commandline phonegap add plugin ...
the plugins install don't work when app compiled.
for instace org.apache.cordova.statusbar, supposed prevent statusbar overlaping in ios7.
the plugin should work following code:
`<script type="text/javascript"> function onload(){ document.addeventlistener('deviceready', ondeviceready); } function ondeviceready(){ statusbar.overlayswebview(false); } </script>`
however when build (locally) , deploy statusbar continues overlay.
should using cordova rather phonegap i'm building locally? possible use of ember issue?
thanks in advance
Comments
Post a Comment