This commit is contained in:
Zalmoxisus 2014-10-19 04:16:17 +04:00
parent 96e5117f6a
commit aa6da5f9ba
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ var Util = (function (my) {
* Escapes the given text.
*/
my.escapeHtml = function (unsafeText) {
return $('<div/>').text(unsafeText).html();
return $('<div/>').text(unsafeText).text();
};
/**