Skip to content

Commit

Permalink
spaces between usernames
Browse files Browse the repository at this point in the history
  • Loading branch information
thejh authored and isaacs committed Oct 16, 2011
1 parent da196ec commit 2a3e060
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/attachments/site.js
Expand Up @@ -538,7 +538,7 @@ app.showPackage = function () {
if (doc.users)
for (var usingUser in doc.users)
if (doc.users[usingUser])
usersStr += '<span class="user">'+usingUser.replace(/</g, '&lt;').replace(/>/g, '&gt;')+'</span>'
usersStr += (usersStr.length?' ':'')+'<span class="user">'+usingUser.replace(/</g, '&lt;').replace(/>/g, '&gt;')+'</span>'
usersStr += '</p></div>'
package.append(usersStr)

Expand Down

0 comments on commit 2a3e060

Please sign in to comment.