()
| 771 | } |
| 772 | |
| 773 | closeCurrentView () { |
| 774 | if (globalVar.currentView != null ? globalVar.currentView.reloadOnClose : undefined) { |
| 775 | return document.location.reload() |
| 776 | } |
| 777 | __guardMethod__(window.currentModal, 'hide', o => o.hide()) |
| 778 | if (globalVar.currentView == null) { return } |
| 779 | globalVar.currentView.modalClosed() |
| 780 | globalVar.currentView.destroy() |
| 781 | $('.popover').popover('hide') |
| 782 | $('#flying-focus').css({ top: 0, left: 0 }) // otherwise it might make the page unnecessarily tall |
| 783 | return _.delay(function () { |
| 784 | $('html')[0].scrollTop = 0 |
| 785 | $('body')[0].scrollTop = 0 |
| 786 | }, 10) |
| 787 | } |
| 788 | |
| 789 | initializeSocialMediaServices () { |
| 790 | if (application.testing || application.demoing || !me.useSocialSignOn()) { return } |
no test coverage detected