Skip to main content

Search and Top Navigation

#7022 closed enhancement (notabug)

Opened February 19, 2011 06:58PM UTC

Closed February 19, 2011 09:57PM UTC

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 <developer@lailton.com.br>

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.

Attachments (0)
Change History (1)

Changed February 19, 2011 09:57PM UTC by scottgonzalez comment:1

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.