Merge pull request #3227 from bugron/bugron-replace_all-matches

fixes user agent semicolon replacement
pull/3104/merge
Anton Strömkvist 2015-09-10 19:21:51 +02:00
commit 1e63840308
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ $(document).ready(function() {
var textMessage = 'https://github.com/freecodecamp/freecodecamp/issues/new?&body=Challenge ' + window.location.href + ' has an issue.';
textMessage += ' User Agent is: <code>' + navigator.userAgent + '</code>.';
textMessage += ' Please describe how to reproduce this issue, and include links to screenshots if possible.%0A%0A';
textMessage = textMessage.replace(';', ','); //GitHub cuts User Agent text because of ';' symbol so I just replace it with ','
textMessage = textMessage.replace(/;/g, ',');
$('#issue-modal').modal('hide');
window.open(textMessage, '_blank');
});