Browse Source

Merge pull request #2956 from AgentShark/patch-1

Fixed bad template url
pull/2961/head
Jack Lukic 9 years ago
parent
commit
047ca91b26
1 changed files with 1 additions and 1 deletions
  1. 2
      src/definitions/modules/embed.js

2
src/definitions/modules/embed.js

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

Loading…
Cancel
Save