mirror of
https://github.com/jquery/jquery.git
synced 2026-01-31 16:07:59 -05:00
9 lines
255 B
JavaScript
9 lines
255 B
JavaScript
|
|
window.startIframeTest = function() {
|
|
var args = Array.prototype.slice.call( arguments );
|
|
|
|
// Note: jQuery may be undefined if page did not load it
|
|
args.unshift( window.jQuery, window, document );
|
|
window.parent.iframeCallback.apply( null, args );
|
|
};
|