mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-30 07:35:39 +00:00
(js/css) Update generated files
This commit is contained in:
+10
-6
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* @license AngularJS v1.7.4
|
||||
* @license AngularJS v1.7.5
|
||||
* (c) 2010-2018 Google, Inc. http://angularjs.org
|
||||
* License: MIT
|
||||
*/
|
||||
@@ -99,7 +99,7 @@ function isValidObjectMaxDepth(maxDepth) {
|
||||
function minErr(module, ErrorConstructor) {
|
||||
ErrorConstructor = ErrorConstructor || Error;
|
||||
|
||||
var url = 'https://errors.angularjs.org/1.7.4/';
|
||||
var url = 'https://errors.angularjs.org/1.7.5/';
|
||||
var regex = url.replace('.', '\\.') + '[\\s\\S]*';
|
||||
var errRegExp = new RegExp(regex, 'g');
|
||||
|
||||
@@ -2787,11 +2787,11 @@ function toDebugString(obj, maxDepth) {
|
||||
var version = {
|
||||
// These placeholder strings will be replaced by grunt's `build` task.
|
||||
// They need to be double- or single-quoted.
|
||||
full: '1.7.4',
|
||||
full: '1.7.5',
|
||||
major: 1,
|
||||
minor: 7,
|
||||
dot: 4,
|
||||
codeName: 'interstellar-exploration'
|
||||
dot: 5,
|
||||
codeName: 'anti-prettification'
|
||||
};
|
||||
|
||||
|
||||
@@ -2940,7 +2940,7 @@ function publishExternalAPI(angular) {
|
||||
});
|
||||
}
|
||||
])
|
||||
.info({ angularVersion: '1.7.4' });
|
||||
.info({ angularVersion: '1.7.5' });
|
||||
}
|
||||
|
||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||
@@ -27818,6 +27818,8 @@ function classDirective(name, selector) {
|
||||
}
|
||||
|
||||
function toClassString(classValue) {
|
||||
if (!classValue) return classValue;
|
||||
|
||||
var classString = classValue;
|
||||
|
||||
if (isArray(classValue)) {
|
||||
@@ -27826,6 +27828,8 @@ function classDirective(name, selector) {
|
||||
classString = Object.keys(classValue).
|
||||
filter(function(key) { return classValue[key]; }).
|
||||
join(' ');
|
||||
} else if (!isString(classValue)) {
|
||||
classString = classValue + '';
|
||||
}
|
||||
|
||||
return classString;
|
||||
|
||||
Reference in New Issue
Block a user