Browse Source

Fixed bad template url

Equals after the question mark caused parameters not to be recognised by youtube.
pull/2956/head
AgentShark 9 years ago
parent
commit
13f3e3114c
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