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

Popular posts from this blog

mysqli - Php Mysqli_fetch_assoc Error : "Warning: Illegal string offset 'name' in" -

html - Cut text on left side inside button while centering -

php - Hide Categories from WordPress Dashboard by ID and Custom Post Type -