Fix inception.

This commit is contained in:
Nicolas Stepien 2011-05-18 23:09:20 +02:00
parent 3de7ee04b5
commit 6114c7f1bb
2 changed files with 2 additions and 2 deletions

View File

@ -1674,7 +1674,7 @@
},
node: function(root) {
var el, id, link, qid, quote, quotes, tid, _i, _len, _ref, _results;
if (root.className === 'inline') {
if (root.className) {
return;
}
id = root.id || $('td[id]', root).id;

View File

@ -1352,7 +1352,7 @@ quoteBacklink =
init: ->
g.callbacks.push quoteBacklink.node
node: (root) ->
return if root.className is 'inline'
return if root.className
#better coffee-script way of doing this?
id = root.id or $('td[id]', root).id
quotes = {}