commit/galaxy-central: guerler: Fix upload box plugin
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/7eeb3d1065bf/ Changeset: 7eeb3d1065bf User: guerler Date: 2013-10-12 19:07:00 Summary: Fix upload box plugin Affected #: 1 file diff -r 34ff4b571205e3d28adcf2d553e6aa0c15364d94 -r 7eeb3d1065bf27497a2effeee135cd288edb8218 static/scripts/utils/galaxy.uploadbox.js --- a/static/scripts/utils/galaxy.uploadbox.js +++ b/static/scripts/utils/galaxy.uploadbox.js @@ -46,6 +46,9 @@ // element var el = null; + // xml request element + var xhr = null; + // attach to element $.fn.uploadbox = function(options) { @@ -237,7 +240,7 @@ formData.append(opts.paramname, file, file.name); // prepare request - var xhr = new XMLHttpRequest(); + xhr = new XMLHttpRequest(); // captures state changes xhr.onreadystatechange = function() Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
commits-noreply@bitbucket.org