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

c# - SelectList with Dictionary, add values to the Dictionary after it's assigned to SelectList -

how can i manage url using .htaccess in php? -

ios - I get the error Property '...' not found on object of type '...' -