Vinod Kumar Marupu
Vinod Kumar Marupu

Reputation: 547

Ionic Framework - Integrate side-menu with Introduction page getting issue

My introduction page has to open first time and then after it has to open side menu app. here I could able to display introduction page for the firsttime when app is installed, but the problem here i could able to display playlists page but navigation bar is not displaying.

Here is My Code:

https://www.dropbox.com/s/ome1w3isn41hjch/menu.zip?dl=0

getting error in Mobile browser console like this

enter image description here

See the screen shot the nav-bar is empty

Upvotes: 0

Views: 82

Answers (2)

the_mahasagar
the_mahasagar

Reputation: 1201

you missed ng-cordova.js

install using bower from above link..!and <script src="lib/ng-cordova.min.js"></script> in index.html

index.html

<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<title></title>
<link href="lib/ionic/css/ionic.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">

<!-- ionic/angularjs js -->
<script src="lib/ionic/js/ionic.bundle.js"></script>
<script src="lib/ng-cordova.min.js"></script>
<script src="cordova.js"></script>

<!-- your app's js -->
<script src="js/app.js"></script>
<script src="js/controllers.js"></script>

Upvotes: 1

ER.SHASHI TIWARI
ER.SHASHI TIWARI

Reputation: 917

bundle.js error shown because of injector error occupied in app.js so check your app.js angular inject elements.

Upvotes: 3

Related Questions