From 392c99d55498d51c1bddb7181910de2fcdd2bc88 Mon Sep 17 00:00:00 2001 From: Igor Zhukov Date: Sun, 3 Apr 2016 22:13:32 +0300 Subject: [PATCH] Fixed initials entitites Closes #1099 --- app/js/directives.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/js/directives.js b/app/js/directives.js index 4e3b5d0c..c60d59dc 100755 --- a/app/js/directives.js +++ b/app/js/directives.js @@ -2898,7 +2898,7 @@ angular.module('myApp.directives', ['myApp.filters']) } } - initEl.attr('data-content', encodeEntities(peer.initials || '')).prependTo(element); + initEl.attr('data-content', peer.initials || '').prependTo(element); imgEl.remove();