]> source.dussan.org Git - jquery.git/commitdiff
Use window.QUnit to detect the top window when loading with AMD
authorTimmy Willison <timmywillisn@gmail.com>
Tue, 27 Aug 2013 04:31:14 +0000 (00:31 -0400)
committerTimmy Willison <timmywillisn@gmail.com>
Tue, 27 Aug 2013 04:31:14 +0000 (00:31 -0400)
test/jquery.js

index 33fa293d933d3f98c92934d7ea95dcda7c0aa506..e43493967353abf1b8560458d85162a02369eaf1 100644 (file)
@@ -26,7 +26,9 @@
                label: "Load with AMD",
                tooltip: "Load the AMD jQuery file (and its dependencies)"
        });
-       if ( QUnit.urlParams.amd && parent == window ) {
+       // If QUnit is on window, this is the main window
+       // This detection allows AMD tests to be run in an iframe
+       if ( QUnit.urlParams.amd && window.QUnit ) {
                require.config({ baseUrl: src });
                src = "src/jquery";
                // Include tests if specified