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

javascript - Count length of each class -

What design pattern is this code in Javascript? -

hadoop - Restrict secondarynamenode to be installed and run on any other node in the cluster -