From ea506ea4aa4306bd594d747455291b18a030aa4e Mon Sep 17 00:00:00 2001 From: zhangab Date: Wed, 9 May 2018 22:02:56 +0800 Subject: add angularJs component Change-Id: I41eb4950a7ee3b1b4f306681824f6035c624d485 Issue-ID: USECASEUI-113 Signed-off-by: zhangab --- .../src/main/webapp/app/fusion/external/utils/js/browserCheck.js | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 usecaseui-common/src/main/webapp/app/fusion/external/utils/js/browserCheck.js (limited to 'usecaseui-common/src/main/webapp/app/fusion/external/utils') 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 -- cgit