Skip to content

Commit 83050fd

Browse files
committed
Problem escaped caracter on IE7. fixes select2#856
1 parent d77b7db commit 83050fd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

select2.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2873,7 +2873,7 @@ the specific language governing permissions and limitations under the Apache Lic
28732873
};
28742874

28752875
return String(markup).replace(/[&<>"'\/\\]/g, function (match) {
2876-
return replace_map[match[0]];
2876+
return replace_map[match];
28772877
});
28782878
},
28792879
blurOnChange: false,

0 commit comments

Comments
 (0)