Skip to content

Commit

Permalink
Fixed line breaks between request parameters for different OSes
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianZ committed Jul 9, 2012
1 parent c8ab777 commit 61bff28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extension/content/firebug/net/netPanel.js
Expand Up @@ -476,7 +476,7 @@ NetPanel.prototype = Obj.extend(Firebug.ActivablePanel,
{
var params = Url.parseURLParams(file.href);
var result = params.map(function(o) { return o.name + ": " + o.value; });
System.copyToClipboard(result.join("\n"));
System.copyToClipboard(result.join(Str.lineBreak()));
},

copyPOSTParams: function(file)
Expand Down

0 comments on commit 61bff28

Please sign in to comment.