Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

v3 beta bug: setting is not defined
  • In certain situations, I get the following JavaScript error:
    Uncaught ReferenceError: setting is not defined
    onUploadComplete jquery.uploadify.js:335
    (anonymous function) jquery.uploadify.js:13
    SWFUpload.executeNextEvent jquery.uploadify.js:13
    (anonymous function) jquery.uploadify.js:13


    Line 335 in jquery.uploadify.js looks like this:
    if (swfuploadify.settings.onQueueComplete) setting.onQueueComplete(stats);

    Shouldn't it be changed to this?
    if (swfuploadify.settings.onQueueComplete) swfuploadify.settings.onQueueComplete(stats);
  • You saved my day with this ;)
  • Another issue

    in line 335

    change

    if (swfuploadify.settings.onQueueComplete) setting.onQueueComplete(stats);

    to
    if (swfuploadify.settings.onQueueComplete) settings.onQueueComplete(stats);

    (missed a 's' in 'settings' word)
  • The user and all related content has been deleted.