浏览代码

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
             = function() { };
 
-        window.opener = this.windowStorage.previous();
+        window.opener = this.windowStorage.previous() || window.opener;
         window.dismissRelatedLookupPopup = function(win, chosenId) {
             self.closePopup({
                 action: 'lookup',