shave a line

This commit is contained in:
James Campos 2011-07-20 22:08:47 -07:00
parent 4140017c42
commit 50e4c61bb7
2 changed files with 4 additions and 7 deletions

View File

@ -2455,13 +2455,11 @@
});
},
mouseover: function(e) {
var img;
img = $.el('img', {
ui.el = $.el('img', {
id: 'iHover',
src: this.parentNode.href
});
ui.el = img;
return $.append(d.body, img);
return $.append(d.body, ui.el);
}
};
imgPreloading = {

View File

@ -1854,11 +1854,10 @@ imgHover =
$.bind thumb, 'mousemove', ui.hover
$.bind thumb, 'mouseout', ui.hoverend
mouseover: (e) ->
img = $.el 'img'
ui.el = $.el 'img'
id: 'iHover'
src: @parentNode.href
ui.el = img
$.append d.body, img
$.append d.body, ui.el
imgPreloading =
init: ->