Browse Source

Merge branch 'master' of https://github.com/happylinks/Semantic-UI into next

pull/3704/head
Jack Lukic 8 years ago
parent
commit
5322ed971c
1 changed files with 5 additions and 1 deletions
  1. 6
      src/definitions/modules/embed.js

6
src/definitions/modules/embed.js

@ -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>'
;

Loading…
Cancel
Save