angular.js/test/ngRoute
joshrtay 04cebcc133 feat($route): express style route matching
Added new route matching capabilities:
  - optional param
Changed route matching syntax:
 - named wildcard

BREAKING CHANGE: the syntax for named wildcard parameters in routes
    has changed from *wildcard to :wildcard*

    To migrate the code, follow the example below.  Here, *highlight becomes
    :highlight*:

    Before:

    $routeProvider.when('/Book1/:book/Chapter/:chapter/*highlight/edit',
              {controller: noop, templateUrl: 'Chapter.html'});

    After:

    $routeProvider.when('/Book1/:book/Chapter/:chapter/:highlight*/edit',
            {controller: noop, templateUrl: 'Chapter.html'});
2013-08-12 11:04:37 -07:00
..
directive chore(ngMock): rename $animate.process to $animate.flushNext() 2013-08-02 23:52:37 -07:00
routeParamsSpec.js feat($route): express style route matching 2013-08-12 11:04:37 -07:00
routeSpec.js feat($route): express style route matching 2013-08-12 11:04:37 -07:00