From a68d55ee5716bcd533b3142e634abd4dd4e723e3 Mon Sep 17 00:00:00 2001 From: Igor Zhukov Date: Sun, 15 Mar 2015 23:59:04 +0100 Subject: [PATCH] Fixed spaces before hashtags --- app/js/services.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/js/services.js b/app/js/services.js index d100ff18..c1fb1e75 100755 --- a/app/js/services.js +++ b/app/js/services.js @@ -3823,6 +3823,7 @@ angular.module('myApp.services', ['myApp.i18n', 'izhukov.utils']) else if (match[10]) { if (!options.noLinks) { html.push( + encodeEntities(match[9]), '', @@ -3831,6 +3832,7 @@ angular.module('myApp.services', ['myApp.i18n', 'izhukov.utils']) ); } else { html.push( + encodeEntities(match[9]), encodeEntities(match[10]) ); }