Fix inception.
This commit is contained in:
parent
3de7ee04b5
commit
6114c7f1bb
@ -1674,7 +1674,7 @@
|
|||||||
},
|
},
|
||||||
node: function(root) {
|
node: function(root) {
|
||||||
var el, id, link, qid, quote, quotes, tid, _i, _len, _ref, _results;
|
var el, id, link, qid, quote, quotes, tid, _i, _len, _ref, _results;
|
||||||
if (root.className === 'inline') {
|
if (root.className) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
id = root.id || $('td[id]', root).id;
|
id = root.id || $('td[id]', root).id;
|
||||||
|
|||||||
@ -1352,7 +1352,7 @@ quoteBacklink =
|
|||||||
init: ->
|
init: ->
|
||||||
g.callbacks.push quoteBacklink.node
|
g.callbacks.push quoteBacklink.node
|
||||||
node: (root) ->
|
node: (root) ->
|
||||||
return if root.className is 'inline'
|
return if root.className
|
||||||
#better coffee-script way of doing this?
|
#better coffee-script way of doing this?
|
||||||
id = root.id or $('td[id]', root).id
|
id = root.id or $('td[id]', root).id
|
||||||
quotes = {}
|
quotes = {}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user