Do not format quote hover.

This commit is contained in:
ahodesuka 2012-02-21 03:29:46 -06:00
parent 30e0776c0e
commit 2ebe086bc5
2 changed files with 4 additions and 2 deletions

View File

@ -2916,7 +2916,9 @@
},
node: function(root) {
var filesize, node;
if (root.className === 'inline' || !(node = $('.filesize', root))) return;
if (root.id === 'qp' || root.className === 'inline' || !(node = $('span.filesize', root))) {
return;
}
Filesize.data = Filesize.parse(node);
filesize = $.el('span', {
className: 'filesize',

View File

@ -2355,7 +2355,7 @@ Filesize =
Filesize.getFormat()
g.callbacks.push @node
node: (root) ->
return if root.className is 'inline' or not node = $ '.filesize', root
return if root.id is 'qp' or root.className is 'inline' or not node = $ 'span.filesize', root
Filesize.data = Filesize.parse node
filesize = $.el 'span',
className: 'filesize',