From 00d545f87e30e0648ff90f56499fbb8715969ecd Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Julius=20H=C3=A4rtl?= <jus@bitgrid.net>
Date: Tue, 7 Jul 2020 17:03:11 +0200
Subject: [PATCH] Fix placeholder issues with multiplace spaces in the name
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Julius Härtl <jus@bitgrid.net>
Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
---
 core/js/dist/main.js           | Bin 1374394 -> 1374421 bytes
 core/js/dist/main.js.map       | Bin 5146629 -> 5146682 bytes
 core/src/jquery/placeholder.js |   2 +-
 3 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/js/dist/main.js b/core/js/dist/main.js
index 5738ee94428ac8c720ebe818659dfd5f0589edf8..5ecb00869014eb2363b53f4b7f285038dec90a3c 100644
GIT binary patch
delta 82
zcmdn>G5G4o;D#2)7N!>F7M2#)7Pc1l7LFFq7OocV7M>Q~7QPn#7J(MQ7NHj5Eh3he
mrHWDuauSnMHS}YOwe{0=loXUS^-78|b2T)#TU-`tQUw655gSAR

delta 55
zcmccmF?iR<;D#2)7N!>F7M2#)7Pc1l7LFFq7OocV7M>Q~7QPn#7J(MQ7NHj5Eh3he
Lw})I7X;cLOL4FgC

diff --git a/core/js/dist/main.js.map b/core/js/dist/main.js.map
index 9d4a634d5b1526f312b24addd67f62e91eb49b67..ec4534643ce9803e2d4f1abd6bd46da882a81053 100644
GIT binary patch
delta 348
zcmWm9%Ps=}0EOYG`@IxZin`9!j1G0bcgC#@n(mu6B8@abr1}6BM{Mmp2uYJZ4I6J@
z@1Mo@=WNgGdn44qi<%Ttvs%=uHnpomo$6Azdeo~v^((9a4Jx7`4Qu2p`dy4YdUoD*
z^L8$X@49})3wAF3@l%XuL(bWoRf=L1F^pjxaZF$mQ%GPMGnmC3=CJ?+CX!f$1sh99
z!ND?Ckj5(3u#OFEVhh{Y!7lc&j{_Vc0~a2SaEue2BKVNSIWFMivTl{Gem~>Y^3(mz
dZP|1Rg=fpTvlB+bNTzDl%7dA#ha=a2wSVBjZchLJ

delta 295
zcmWm8$yPxD0LS6uQjrEyZnL>$EEF1X&Cw(92CdrIwfH-2+w~xv;~Y<8)f2R7=V$Tl
zzxnsv7~@km8M4cvHLYtyPPw!xx3;vc9qq~^ulD5Az7FJ{nu~#L^z%P3+s1qI%Nm+E
z#1W2hf>WH~903FoLKqQ55yJ&85yur0NFs$aGRWc@H^?E60&a1KB1$OZ9uIiL6Q1#c
f3aY5VLLCjP{w=i8K^L#+&8%VncQR}G-u^z8q`75J

diff --git a/core/src/jquery/placeholder.js b/core/src/jquery/placeholder.js
index b26f06a6302..6c5f94313f6 100644
--- a/core/src/jquery/placeholder.js
+++ b/core/src/jquery/placeholder.js
@@ -164,7 +164,7 @@ $.fn.imageplaceholder = function(seed, text, size) {
 	this.css('font-size', (height * 0.55) + 'px')
 
 	if (seed !== null && seed.length) {
-		var placeholderText = text.split(' ', 2).map((word) => word[0].toUpperCase()).join('')
+		var placeholderText = text.replace(/\s+/g, ' ').trim().split(' ', 2).map((word) => word[0].toUpperCase()).join('')
 		this.html(placeholderText);
 	}
 }
-- 
GitLab