blob: 4db56833c5faee5079b8336cb4dc3f915afda97a (
plain)
1
2
3
4
5
6
7
|
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 );
};
|