Opened 12 years ago

Closed 12 years ago

#7022 closed enhancement (notabug)

Bug Fix Resizable in IE

Reported by: lailton Owned by:
Priority: minor Milestone: 1.9.0
Component: ui.resizable Version: 1.8.9
Keywords: Cc:
Blocked by: Blocking:

Description

Line 266 i changed to

if ($.browser.msie){ Bug in Iexplore, (Solved By Lailton <[email protected]…> this.originalSize = this._helper ? { width: el.outerWidth(), height: el.outerHeight() } : { width: el.width()-2, height: el.height() }; }else{ this.originalSize = this._helper ? { width: el.outerWidth(), height: el.outerHeight() } : { width: el.width(), height: el.height() }; }

note i need add -2 because IN IE when i resize he alone remove -2 of width. using this way i solved.

please add it for js. thanks.

Change History (1)

comment:1 Changed 12 years ago by Scott González

Resolution: invalid
Status: newclosed

Please create a bug report that:
1) Contains a summary of the actual problem; "bug fix" is not a summary.
2) Describes the problem.
3) Contains a test case showing what is described.

Note: See TracTickets for help on using tickets.