소스 검색

Add fallback to window.opener which supports old django popups. (#167)

Michael Kutý 8 년 전
부모
커밋
3a659c735c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      jet/static/jet/js/src/features/related-popups.js

+ 1 - 1
jet/static/jet/js/src/features/related-popups.js

@@ -217,7 +217,7 @@ RelatedPopups.prototype = {
             = window.showRelatedObjectPopup
             = window.showRelatedObjectPopup
             = function() { };
             = function() { };
 
 
-        window.opener = this.windowStorage.previous();
+        window.opener = this.windowStorage.previous() || window.opener;
         window.dismissRelatedLookupPopup = function(win, chosenId) {
         window.dismissRelatedLookupPopup = function(win, chosenId) {
             self.closePopup({
             self.closePopup({
                 action: 'lookup',
                 action: 'lookup',