1
0
mirror of synced 2024-11-26 06:46:04 +03:00

move markup escaping of selection into the formatSelection callback. fixes #1417. fixes #1420

This commit is contained in:
Igor Vaynberg 2013-06-23 14:32:45 -07:00
parent 1415567a70
commit ef136731d4

View File

@ -1911,7 +1911,7 @@ the specific language governing permissions and limitations under the Apache Lic
|| (e.which == KEY.ENTER && this.opts.openOnEnter)) {
if (e.altKey || e.ctrlKey || e.shiftKey || e.metaKey) return;
this.open();
killEvent(e);
return;
@ -2174,9 +2174,9 @@ the specific language governing permissions and limitations under the Apache Lic
this.selection.data("select2-data", data);
container.empty();
formatted=this.opts.formatSelection(data, container);
formatted=this.opts.formatSelection(data, container, this.opts.escapeMarkup);
if (formatted !== undefined) {
container.append(this.opts.escapeMarkup(formatted));
container.append(formatted);
}
cssClass=this.opts.formatSelectionCssClass(data, container);
if (cssClass !== undefined) {
@ -2722,9 +2722,9 @@ the specific language governing permissions and limitations under the Apache Lic
formatted,
cssClass;
formatted=this.opts.formatSelection(data, choice.find("div"));
formatted=this.opts.formatSelection(data, choice.find("div"), this.opts.escapeMarkup);
if (formatted != undefined) {
choice.find("div").replaceWith("<div>"+this.opts.escapeMarkup(formatted)+"</div>");
choice.find("div").replaceWith("<div>"+formatted+"</div>");
}
cssClass=this.opts.formatSelectionCssClass(data, choice.find("div"));
if (cssClass != undefined) {
@ -3085,8 +3085,8 @@ the specific language governing permissions and limitations under the Apache Lic
markMatch(result.text, query.term, markup, escapeMarkup);
return markup.join("");
},
formatSelection: function (data, container) {
return data ? data.text : undefined;
formatSelection: function (data, container, escapeMarkup) {
return data ? escapeMarkup(data.text) : undefined;
},
sortResults: function (results, container, query) {
return results;