Commit 660f6ff7c0b36d76f715326c3c2d4197b2890d38

Authored by Amrita Vishnoi
2 parents 34dc20b6 c7659641

Merge branch 'refreshissuenew' into Develop

400-SOURCECODE/AIAHTML5.Web/libs/check_browser_close.js
1 1 // Refer bug: 22056
2   -$(window).on('mouseover', (function () {
3   - window.onbeforeunload = null;
4   -}));
5   -$(window).on('mouseout', (function () {
6   - window.onbeforeunload = ConfirmLeave;
7   -}));
  2 +//$(window).on('mouseover', (function () {
  3 +// window.onbeforeunload = null;
  4 +//}));
  5 +//$(window).on('mouseout', (function () {
  6 +// window.onbeforeunload = ConfirmLeave;
  7 +//}));
8 8 function ConfirmLeave() {
9 9 if (typeof (localStorage.getItem("loggedInUserDetails")) !== 'undefined') {
10 10 localStorage.removeItem('loggedInUserDetails');
... ...