#1921 closed bug (fixed)
[PATCH] function outerHeight(el) from ui.mouse.js calculates "width"
Reported by: | ptab | Owned by: | |
---|---|---|---|
Priority: | critical | Milestone: | 1.5 |
Component: | ui.core | Version: | 1.2.1 |
Keywords: | outerHeight | Cc: | |
Blocked by: | Blocking: |
Description
File: ui.mouse.js
Look at the second line of the code: WIDTH !!! should be HEIGHT. It makes Drag&Drop module not working (tolerance):
function outerHeight(el) {
var $el = $(el), oh = $el.width(); for (var i = 0, props = ['borderTopWidth', 'paddingTop', 'paddingBottom', 'borderBottomWidth']; i < props.length; i++)
oh += num($el, props[i]);
return oh;
}
Attachments (1)
Change History (4)
Changed 15 years ago by
Attachment: | patch_ticket_1921.diff added |
---|
comment:1 Changed 15 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
Fixed in Rev [3826].
I just used the dimensions outerWidth and outerHeight methods which were just updated for a boost in performance.
comment:3 Changed 14 years ago by
Milestone: | → 1.5 |
---|
Note: See
TracTickets for help on using
tickets.
PATCH