mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-11 16:28:51 +00:00
chore(js/css): update generated files
This commit is contained in:
@@ -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.24
|
||||
* @version v1.0.25
|
||||
* @link https://ui-router.github.io
|
||||
* @license MIT License, http://www.opensource.org/licenses/MIT
|
||||
*/
|
||||
@@ -1207,7 +1207,7 @@
|
||||
}
|
||||
function getSafeConsole() {
|
||||
// @ts-ignore
|
||||
var isIE9 = document && document.documentMode && document.documentMode === 9;
|
||||
var isIE9 = typeof document !== 'undefined' && document.documentMode && document.documentMode === 9;
|
||||
if (isIE9) {
|
||||
return window && window.console ? ie9Console(window.console) : noopConsoleStub;
|
||||
}
|
||||
@@ -6957,7 +6957,7 @@
|
||||
* ```
|
||||
* .state('abc', {
|
||||
* component: 'fooComponent',
|
||||
* lazyLoad: () => System.import('./fooComponent')
|
||||
* lazyLoad: () => import('./fooComponent')
|
||||
* });
|
||||
* ```
|
||||
*
|
||||
|
||||
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