put a slash on the end of the http request string for autocomplete
git-svn-id: http://svn.osqa.net/svnroot/osqa/trunk@419
0cfe37f9-358a-4d5e-be75-
b63607b5c754
init: function(){\r
collectPickedTags();\r
setupHideIgnoredQuestionsControl();\r
- $("#interestingTagInput, #ignoredTagInput").autocomplete("/matching_tags", {\r
+ $("#interestingTagInput, #ignoredTagInput").autocomplete("/matching_tags/", {\r
minChars: 1,\r
matchContains: true,\r
max: 20,\r
});
//Tags autocomplete action
- $("#id_tags").autocomplete("/matching_tags", {
+ $("#id_tags").autocomplete("/matching_tags/", {
minChars: 1,
matchContains: true,
max: 20,
});
//Tags autocomplete action
- $("#id_tags").autocomplete("/matching_tags", {
+ $("#id_tags").autocomplete("/matching_tags/", {
matchContains: true,
max: 20,
multiple: true,
$().ready(function(){
$("#nav_questions").attr('className',"on");
//Tags autocomplete action
- $("#id_tags").autocomplete("/matching_tags", {
+ $("#id_tags").autocomplete("/matching_tags/", {
minChars: 1,
matchContains: true,
max: 20,