potential fix for #1745

This commit is contained in:
r888888888
2013-06-18 16:10:30 -07:00
parent f16f530eea
commit 97a1550d2e
3 changed files with 7 additions and 4 deletions

View File

@@ -18,7 +18,7 @@
limit: 10,
valueKey: "name",
template: function(context) {
return "<p>" + context.name.replace(/_/g, " ") + "</a></p>";
return "<p>" + context.name.replace(/_/g, " ") + "</p>";
}
});
}

View File

@@ -10,7 +10,7 @@
limit: 10,
valueKey: "title",
template: function(context) {
return "<p>" + context.title.replace(/_/g, " ") + "</a></p>";
return "<p>" + context.title.replace(/_/g, " ") + "</p>";
}
});
}