ui.hover e doesn't work

This commit is contained in:
James Campos 2011-05-21 23:36:47 -07:00
parent 3c93be92de
commit da647236c0
2 changed files with 2 additions and 6 deletions

View File

@ -1869,8 +1869,7 @@
} }
ui.el = qp; ui.el = qp;
ui.winHeight = d.body.clientHeight; ui.winHeight = d.body.clientHeight;
$.show(qp); return $.show(qp);
return ui.hover(e);
}, },
parse: function(req, id, threadID) { parse: function(req, id, threadID) {
var body, html, op, qp, reply, _i, _len, _ref; var body, html, op, qp, reply, _i, _len, _ref;
@ -2126,8 +2125,7 @@
el.src = this.parentNode.href; el.src = this.parentNode.href;
ui.el = el; ui.el = el;
ui.winHeight = d.body.clientHeight; ui.winHeight = d.body.clientHeight;
$.show(el); return $.show(el);
return ui.hover(e);
} }
} }
}; };

View File

@ -1483,7 +1483,6 @@ quotePreview =
ui.el = qp ui.el = qp
ui.winHeight = d.body.clientHeight ui.winHeight = d.body.clientHeight
$.show qp $.show qp
ui.hover e
parse: (req, id, threadID) -> parse: (req, id, threadID) ->
qp = $ '#qp' qp = $ '#qp'
return unless qp.innerHTML is "Loading #{id}..." return unless qp.innerHTML is "Loading #{id}..."
@ -1645,7 +1644,6 @@ imageHover =
ui.el = el ui.el = el
ui.winHeight = d.body.clientHeight ui.winHeight = d.body.clientHeight
$.show el $.show el
ui.hover e
imgPreloading = imgPreloading =
init: -> init: ->