Controller 'ionTabs', required by directive 'ionTabNav', can't be found!

Got this error after upgrading to beta12. What have I done wrong?

All I did was change the name in bower.json to beta12 and run bower update ionic.

Nvm, I found out the reason. It was because I included jquery before ionic.bundle.js.

I don’t know why this happens though. However maybe I should look into alternatives.

This also worked for me - odd.

Yep - i had the exact same issue, and the exact same solution fixed it.

This worked for me too…Just moved the Jquery include below the ionic bundle…

Before -

script src=“lib/jquery-2.1.3.min/index.js”
script src=“lib/ionic/js/ionic.bundle.js”

After-

script src=“lib/ionic/js/ionic.bundle.js”
script src=“lib/jquery-2.1.3.min/index.js”

and it worked!

Thanks