diff options
author | 2018-05-09 22:02:56 +0800 | |
---|---|---|
committer | 2018-05-09 22:03:03 +0800 | |
commit | ea506ea4aa4306bd594d747455291b18a030aa4e (patch) | |
tree | c88180e409e01ae08bc4f26d3f57bb99098a15f7 /usecaseui-common/src/main/webapp/app/fusion/external/utils | |
parent | b92099db10112c4a260485354dbf10176383561c (diff) |
add angularJs component
Change-Id: I41eb4950a7ee3b1b4f306681824f6035c624d485
Issue-ID: USECASEUI-113
Signed-off-by: zhangab <zhanganbing@chinamobile.com>
Diffstat (limited to 'usecaseui-common/src/main/webapp/app/fusion/external/utils')
-rw-r--r-- | usecaseui-common/src/main/webapp/app/fusion/external/utils/js/browserCheck.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/usecaseui-common/src/main/webapp/app/fusion/external/utils/js/browserCheck.js b/usecaseui-common/src/main/webapp/app/fusion/external/utils/js/browserCheck.js new file mode 100644 index 00000000..2a290d04 --- /dev/null +++ b/usecaseui-common/src/main/webapp/app/fusion/external/utils/js/browserCheck.js @@ -0,0 +1,5 @@ +var isOpera = !!window.opera || navigator.userAgent.indexOf(' OPR/') >= 0; +var isFirefox = typeof window.InstallTrigger !== 'undefined'; +var isSafari = Object.prototype.toString.call(window.HTMLElement).indexOf('Constructor') > 0; +var isChrome = !!window.chrome && !isOpera; +var isIE = !!document.documentMode;
\ No newline at end of file |