Skip to content

Commit

Permalink
Simplify
Browse files Browse the repository at this point in the history
  • Loading branch information
slusarz committed Apr 15, 2014
1 parent c513930 commit 3389869
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion imp/js/dimpcore.js
Expand Up @@ -178,7 +178,7 @@ var DimpCore = {
updateMsgLog: function(log)
{
var df = document.createDocumentFragment(),
tmp = $('msgloglist').down('UL');
tmp = $('msgloglist');

log.each(function(entry) {
df.appendChild(new Element('LI').insert(new Element('SPAN', { className: 'iconImg imp-' + entry.t })).insert(entry.m.escapeHTML()));
Expand Down
4 changes: 1 addition & 3 deletions imp/templates/dynamic/mailbox.html.php
Expand Up @@ -164,9 +164,7 @@
<div>
<span class="msgLogLabel"><?php echo _("Message Log") ?></span>
</div>
<div id="msgloglist" style="display:none">
<ul></ul>
</div>
<ul id="msgloglist" style="display:none"></ul>
</td>
</tr>
</thead>
Expand Down
4 changes: 1 addition & 3 deletions imp/templates/dynamic/message.html.php
Expand Up @@ -101,9 +101,7 @@
</tr>
</thead>
</table>
<div id="msgloglist" style="display:none">
<ul></ul>
</div>
<ul id="msgloglist" style="display:none"></ul>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion imp/themes/default/dynamic/screen.css
Expand Up @@ -436,7 +436,7 @@ div.vpRowVert div.msgSubject {
margin-right: 0;
}

#msgloglist ul {
#msgloglist {
list-style-type: none;
}
#msgloglist li {
Expand Down

0 comments on commit 3389869

Please sign in to comment.