Fix #499, trashcan icon

This commit is contained in:
Zixaphir 2013-12-16 18:53:12 -07:00
parent 16b650f26c
commit 1dfe5582c5
3 changed files with 3 additions and 3 deletions

View File

@ -3484,7 +3484,7 @@
} }
if (!(strong = $('strong.warning', this.nodes.info))) { if (!(strong = $('strong.warning', this.nodes.info))) {
strong = $.el('strong', { strong = $.el('strong', {
className: 'warning icon' className: 'warning fa'
}); });
$.after($('input', this.nodes.info), strong); $.after($('input', this.nodes.info), strong);
} }

View File

@ -3493,7 +3493,7 @@
} }
if (!(strong = $('strong.warning', this.nodes.info))) { if (!(strong = $('strong.warning', this.nodes.info))) {
strong = $.el('strong', { strong = $.el('strong', {
className: 'warning icon' className: 'warning fa'
}); });
$.after($('input', this.nodes.info), strong); $.after($('input', this.nodes.info), strong);
} }

View File

@ -164,7 +164,7 @@ class Post
unless strong = $ 'strong.warning', @nodes.info unless strong = $ 'strong.warning', @nodes.info
strong = $.el 'strong', strong = $.el 'strong',
className: 'warning icon' className: 'warning fa'
$.after $('input', @nodes.info), strong $.after $('input', @nodes.info), strong
strong.textContent = if file then '\uf070' else '\uf014' strong.textContent = if file then '\uf070' else '\uf014'
strong.title = "#{if file then 'File' else 'Post'} Deleted" strong.title = "#{if file then 'File' else 'Post'} Deleted"