chore(js/css): update generated files

This commit is contained in:
InverseBot
2020-02-05 02:13:22 -05:00
parent ad3a9c87f8
commit c49137e620
4 changed files with 11 additions and 11 deletions
+3 -3
View File
@@ -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')
* });
* ```
*