added missing property

As per AngularJs Documentation,
(https://docs.angularjs.org/api/ngRoute/provider/$routeProvider) ,
$routeProvider has a property as well. caseInsensitiveMatch , which can
be used to turn off the case sensitive match globally.
This commit is contained in:
Sagar Vadodaria
2015-12-15 14:39:20 +05:30
parent 8ea42cd8bb
commit cf172aab99
+6
View File
@@ -128,6 +128,12 @@ declare module angular.route {
}
interface IRouteProvider extends IServiceProvider {
/**
* Match routes without being case sensitive
*
* This option defaults to false. If the option is set to true, then the particular route can be matched without being case sensitive
*/
caseInsensitiveMatch?: boolean;
/**
* Sets route definition that will be used on route change when no other route definition is matched.
*