mirror of
https://github.com/devbridge/jQuery-Autocomplete.git
synced 2025-04-05 15:01:52 +00:00
use jquery escaping for class names/category names that otherwise cause problems
use jquery escaping for class names/category names that otherwise cause problems
This commit is contained in:
parent
cae37b9b16
commit
0c5c2fe06a
@ -151,7 +151,7 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
function _formatGroup(suggestion, category) {
|
function _formatGroup(suggestion, category) {
|
||||||
return '<div class="autocomplete-group">' + category + '</div>';
|
return $('<div class="autocomplete-group" />').append(category).prop('outerHTML');
|
||||||
};
|
};
|
||||||
|
|
||||||
Autocomplete.prototype = {
|
Autocomplete.prototype = {
|
||||||
@ -665,7 +665,7 @@
|
|||||||
html += formatGroup(suggestion, value, i);
|
html += formatGroup(suggestion, value, i);
|
||||||
}
|
}
|
||||||
|
|
||||||
html += '<div class="' + className + '" data-index="' + i + '">' + formatResult(suggestion, value, i) + '</div>';
|
html += $('<div />').attr('data-index', i).addClass(className).append(formatResult(suggestion, value, i)).prop('outerHTML');
|
||||||
});
|
});
|
||||||
|
|
||||||
this.adjustContainerWidth();
|
this.adjustContainerWidth();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user