|
|
@ -626,8 +626,12 @@ $.fn.embed.settings = { |
|
|
|
|
|
|
|
templates: { |
|
|
|
iframe : function(url, parameters) { |
|
|
|
var src = url; |
|
|
|
if (parameters) { |
|
|
|
src += '?' + parameters; |
|
|
|
} |
|
|
|
return '' |
|
|
|
+ '<iframe src="' + url + '?' + parameters + '"' |
|
|
|
+ '<iframe src="' + src + '"' |
|
|
|
+ ' width="100%" height="100%"' |
|
|
|
+ ' frameborder="0" scrolling="no" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>' |
|
|
|
; |
|
|
|