This commit is contained in:
Toks
2013-06-19 10:46:22 -04:00
parent 27caffb1e6
commit af550f2c8f
2 changed files with 2 additions and 2 deletions

View File

@@ -25,7 +25,7 @@
data = data.slice(0, 10);
resp($.map(data, function(tag) {
return {
label: tag.name,
label: tag.name.replace(/_/g, " "),
value: tag.name
};
}));

View File

@@ -61,7 +61,7 @@
data = data.slice(0, 10);
resp($.map(data, function(tag) {
return {
label: tag.name,
label: tag.name.replace(/_/g, " "),
value: tag.name
};
}));