Ticket #3251 (closed bug: fixed)
ui.resizable >> !respecting min height || width
| Reported by: | recrit@… | Owned by: | eduardo |
|---|---|---|---|
| Priority: | critical | Milestone: | 1.7 |
| Component: | ui.resizable | Version: | 1.6b |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
| width is not respected when the data.height === 0 as calculated from this._change passed from this.mouseDrag |
| width since data.height=0 gets passed through |
fix: (1) add new function to 'this' to detect nothing but allow zero
| x === null}, |
(2) _respectSize:
isminw = !this._isNothing(data.width) && (o.minWidth && data.width < o.minWidth), isminh = !this._isNothing(data.height) && (o.minHeight && data.height < o.minHeight);
Change History
Note: See
TracTickets for help on using
tickets.

