We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 500cd98 + 4b36054 commit a8c3655Copy full SHA for a8c3655
js/topcodereditor.js
@@ -44,7 +44,11 @@
44
success: function (data) {
45
var result = [];
46
$.each(data, function (i, item) {
47
- result.push({text: data[i].handle, displayText: data[i].handle, className: 'Username'});
+ var text = data[i].handle;
48
+ if(text.indexOf('.') > -1) {
49
+ text = '"' + text + '"';
50
+ }
51
+ result.push({text: text, displayText: data[i].handle, className: 'Username'});
52
});
53
return accept({
54
list: result,
0 commit comments