mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-21 06:16:00 +00:00
chore(js/css): update generated files
This commit is contained in:
812
UI/WebServerResources/js/vendor/angular-material.js
vendored
812
UI/WebServerResources/js/vendor/angular-material.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -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);
|
||||
}
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user