mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-16 17:05:25 +00:00
chore(js/css): update generated files
This commit is contained in:
+8
-3
@@ -4,7 +4,7 @@
|
||||
* This causes it to be incompatible with plugins that depend on @uirouter/core.
|
||||
* We recommend switching to the ui-router-core.js and ui-router-angularjs.js bundles instead.
|
||||
* For more information, see https://ui-router.github.io/blog/uirouter-for-angularjs-umd-bundles
|
||||
* @version v1.0.28
|
||||
* @version v1.0.29
|
||||
* @link https://ui-router.github.io
|
||||
* @license MIT License, http://www.opensource.org/licenses/MIT
|
||||
*/
|
||||
@@ -4722,8 +4722,13 @@
|
||||
};
|
||||
UrlMatcher.prototype._getDecodedParamValue = function (value, param) {
|
||||
if (isDefined(value)) {
|
||||
if (this.config.decodeParams && !param.type.raw && !isArray(value)) {
|
||||
value = decodeURIComponent(value);
|
||||
if (this.config.decodeParams && !param.type.raw) {
|
||||
if (isArray(value)) {
|
||||
value = value.map(function (paramValue) { return decodeURIComponent(paramValue); });
|
||||
}
|
||||
else {
|
||||
value = decodeURIComponent(value);
|
||||
}
|
||||
}
|
||||
value = param.type.decode(value);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user