Discussions
Sign In
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Apply for Membership
Categories
All Discussions
3,338
Uploadify
↳ Implementation Help
2,547
↳ Bugs
525
↳ Feature Requests
177
↳ Showcase
66
UploadiFive
↳ Implementation Help
14
↳ Bugs
3
↳ Feature Requests
6
Bugs
jquery.uploadify (Source).js fileUploadSettings
Barbossa
April 2009
225 fileUploadSettings:function(settingName, settingValue) {
226 $(this).each(function() {
227 document.getElementById($(this).attr('id') + 'Uploader').updateSettings(settingName,settingV
alue);
228 });
229 },
Should be:
225 fileUploadSettings:function(settingName, settingValue) {
226 $(this).each(function() {
227 document.getElementById($(this).attr('id') + 'Uploader').updateSettings(settingName,settingV
alue);
228 });
+++ return (this);
229 },
Otherwise you cannot chain, as in:
$('#crap').
fileUploadSettings
('scriptData', '...').fileUploadStart();
etc.
And it's jQuery standard to chain.
TravisN.
April 2009
Good point
Add a Comment
Powered by Vanilla