diff options
| author | Ed Tanous <ed.tanous@intel.com> | 2017-04-05 13:04:39 -0700 |
|---|---|---|
| committer | Ed Tanous <ed.tanous@intel.com> | 2017-04-05 13:17:36 -0700 |
| commit | 7d3dba40b6576ece9850c7156a481436b5f5ef02 (patch) | |
| tree | 5042fa6df66620b82706f25d3eb19e1a4c14d364 /static | |
| parent | b4a7bfad0a3ded7a813bdb44a46383316dc49b24 (diff) | |
| download | bmcweb-7d3dba40b6576ece9850c7156a481436b5f5ef02.tar.gz bmcweb-7d3dba40b6576ece9850c7156a481436b5f5ef02.zip | |
Make app middlewares not require specific instances of app
Diffstat (limited to 'static')
| -rw-r--r-- | static/js/angular-ui-router.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/static/js/angular-ui-router.js b/static/js/angular-ui-router.js index d977aa9..e8f5787 100644 --- a/static/js/angular-ui-router.js +++ b/static/js/angular-ui-router.js @@ -1003,7 +1003,7 @@ UrlMatcher.prototype.exec = function (path, searchParams) { if (isDefined(paramVal)) paramVal = param.type.decode(paramVal); values[paramName] = param.value(paramVal); } - for (/**/; i < nTotal; i++) { + for (; i < nTotal; i++) { paramName = paramNames[i]; values[paramName] = this.params[paramName].value(searchParams[paramName]); param = this.params[paramName]; |

