Today we will be using AngularJS and the great UI Router and the Angular ngAnimate module to create an animated multi-step form. This technique can be used for large forms that you would like to simplify for your users. We can see this technique used…
In the previous post, we use $stateProvider deriect to root url and using MainCtrl, categories.tmpl.html. .config(function($stateProvider){ $stateProvider .state('eggly', { url:'/', controller: 'MainCtrl', templateUrl: 'app/categories/categories.tmpl…
The ui-router library for AngularJS provides the ability to name views within your application. This is useful for dividing up your application into sections, and changing the content of a section based on the current state. We use named view to buil…