You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

Extra quotation in flowplayer-3.2.0.min.js getHTML() Created May 6, 2010

This thread is solved

Views: 3170     Replies: 3     Last reply Aug 6, 2011  
You must login first before you can use this feature

mfb

Posts: 8

Registered:
Feb 10, 2008

Extra quotation in flowplayer-3.2.0.min.js getHTML()

Posted: May 6, 2010

flowplayer-3.2.0.min.js getHTML() generates incorrect HTML (there is an extra quotation mark):

id="'+o.id+'""
should be
id="'+o.id+'"

Looking at the js source,

			var html = '<object width="' + opts.width + 
				'" height="' + opts.height + 
				'" id="' + opts.id + '"' + 
				'" name="' + opts.id + '"';
should be

			var html = '<object width="' + opts.width + 
				'" height="' + opts.height + 
				'" id="' + opts.id + 
				'" name="' + opts.id + '"';

mfb

Posts: 8

Registered:
Feb 10, 2008

» Extra quotation in flowplayer-3.2.0.min.js getHTML()

Posted: May 14, 2010

Reply to: Extra quotation in flowplayer-3.2.0.min.js getHTML(), from mfb
Looks like this wasn't fixed in Flowplayer 3.2.1 or jQuery Tools 1.2.1

Patch available here:http://github.com/mfb/jquerytools/commit/b93ac8bc7154153faeee799320c23b0a627287cc

Tero
Author of jQuery Tools and this website + JavaScript developer of Flowplayer.

Posts: 1867

Registered:
Nov 16, 2007

» Extra quotation in flowplayer-3.2.0.min.js getHTML()

Posted: May 14, 2010

Reply to: Extra quotation in flowplayer-3.2.0.min.js getHTML(), from mfb
got your pull request and fixed this to github. will be fixed on the next version of jquerytools / flowplayer.js.

THANKS!