1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2025-12-18 01:57:02 +00:00

Fix some IE rendering/caching issues

This commit is contained in:
James Hillyerd
2012-10-14 13:09:25 -07:00
parent 6834d71c9b
commit 264d1d0165
4 changed files with 29 additions and 24 deletions

View File

@@ -26,7 +26,7 @@
}
function reloadList() {
$('#messageList').slideUp()
$('#messageList').hide()
loadList()
}
@@ -47,7 +47,7 @@
function messageSource(id) {
window.open('/mailbox/source/{{$name}}/' + id, '_blank',
'width=800,height=600,' +
'location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no')
'menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no')
}
$(document).ready(listInit)

View File

@@ -12,7 +12,7 @@
<td>{{.message.Date}}</td>
</tr>
<table>
<h3 id="emailSubject">{{.message.Subject}}</h3>
<div id="emailSubject"><h3>{{.message.Subject}}</h3></div>
<pre id="emailBody">{{.body}}</pre>