Changeset 3314 for branches

Show
Ignore:
Timestamp:
08/08/2008 07:44:17 PM (4 months ago)
Author:
Shadowhand
Message:

Fixed a bug in the "Show Download URL" JS

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/website/media/js/effects.js

    r2761 r3314  
    5151                { 
    5252                        if($(value).attr('checked')) 
    53                         queryString += encodeURI($(value).attr('name'))+'='+encodeURI($(value).attr('value')); 
     53                                queryString += encodeURI($(value).attr('name')) +'='+ encodeURI($(value).attr('value')) +'&'; 
    5454                }); 
    5555 
    56                 $('#downloadUrlDisplay').val($('#downloadBuilder').attr('action') + queryString).show(); 
     56                $('#downloadUrlDisplay').val($('#downloadBuilder').attr('action') + queryString.slice(0, -1)).show(); 
    5757        }); 
    5858});