ultimix
iframe.dialog.js
Go to the documentation of this file.
1 
6 if( !ultimix )
7 {
8  ultimix = {};
9 }
10 
20 ultimix.IframeDialogInit = function( DivSelector , Url )
21 {
22  jQuery( '#' + DivSelector ).html(
23  '<iframe style="border:0px; width: 100%; height: 100%;" src="' + Url + '"></iframe>'
24  );
25 
26  return( true );
27 }
28 
36 ultimix.IframeDialogOnOpen = function( DivSelector )
37 {
38  jQuery( '#' + DivSelector ).attr( 'style' , 'padding: 0px; ' + jQuery( '#' + DivSelector ).attr( 'style' ) );
39 }