I know it was just released … … but when is there going to be support for angular 1.2.4. I just upgraded, and the ios 7 navbar bleeds back up into the status bar. Thanks!
By the way, IONIC IS AWESOME!
I know it was just released … … but when is there going to be support for angular 1.2.4. I just upgraded, and the ios 7 navbar bleeds back up into the status bar. Thanks!
By the way, IONIC IS AWESOME!
Hey @seanhill. We already support 1.2.4 Take a look at the
dist/js/angular
folder and you’ll see it in there.
As for the status bar, on Codova make sure you’ve installed the org.apache.cordova.device
plugin:
$ cordova plugin add org.apache.cordova.device
which will fix that issue for you
Thanks for the help @max!
Hey @max, I just upgraded my angular folder with the dist/js/angular and also added the org.apache.cordova.device plugin, but it’s still bleeding into the ios7 status bar. Any ideas?
Do you have an ng-app
defined, and are you including 'ionic'
in your modules:
angular.module('myApp', ['ionic']);
<html ng-app="myApp">
You bet, I also lost my console plugin functionality. So perhaps I’m having an issue with plugins. I downloaded the angular seed project though, added the device plugin and started it up, and the bleeding occurred there too. So I’m not exactly sure.
Did you do a $ cordova prepare ios
or $ cordova build ios
after, or did you just build from XCode? you’ll need to run those commands after you install the plugins.
Just trying to narrow it down a bit…