summaryrefslogtreecommitdiffstats
path: root/core/templates/message.html
diff options
context:
space:
mode:
authorJörn Friedrich Dreyer <jfd@butonic.de>2013-10-23 10:15:50 +0200
committerJörn Friedrich Dreyer <jfd@butonic.de>2013-10-23 10:58:25 +0200
commit20716a153a9453d4da008a05949d848b53ea1220 (patch)
tree1198a61f1af1f3b104f41974248189e34ed94ddb /core/templates/message.html
parent9019ad550fc4c8e6d636eaaf98062ba2e495d135 (diff)
downloadnextcloud-server-20716a153a9453d4da008a05949d848b53ea1220.tar.gz
nextcloud-server-20716a153a9453d4da008a05949d848b53ea1220.zip
fix message dialog titles in IE8
Diffstat (limited to 'core/templates/message.html')
-rw-r--r--core/templates/message.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/message.html b/core/templates/message.html
index 59048100f32..cd642231a9e 100644
--- a/core/templates/message.html
+++ b/core/templates/message.html
@@ -1,3 +1,3 @@
-<div id="{dialog_name}" title="{title}">
+<div id="{dialog_name}" title="{title} "><!-- the ' ' after {title} fixes ie8, see http://stackoverflow.com/a/5313137/828717 -->
<p><span class="ui-icon ui-icon-{type}"></span>{message}</p>
</div>