Opened 11 years ago
Closed 11 years ago
#8332 closed bug (notabug)
Hi GUys Found Bug after upgrading chrome from 18 to 19
Reported by: | saroyanm | Owned by: | saroyanm |
---|---|---|---|
Priority: | minor | Milestone: | 1.9.0 |
Component: | ui.core | Version: | 1.8.20 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
I have a chrome extension, that uses jquery-ui-1.8.19, after upgrading chrome 18 to chrome 19, the ppopup window where I call jquery-ui-1.8.19, Jquery-ui starts to add 100px more height to popup window... It's very annoying, You can try to create a chrome extension, and in popup window creat a div and give width to it... When I'm switching to jquery-ui-1.7.3 It fit again correctly, but works with some old jquery bugs, I've also tried to change to version 1.8.20 same issue with height.. please let me know if you need more information, thanks, Manvel
Change History (3)
comment:1 Changed 11 years ago by
comment:2 Changed 11 years ago by
Owner: | set to saroyanm |
---|---|
Status: | new → pending |
Please do not use minified code, also please explain the actual problem, and provide a reduced test case.
comment:3 Changed 11 years ago by
Resolution: | → invalid |
---|---|
Status: | pending → closed |
Because we get so many tickets, we often need to return them to the initial reporter for more information. If that person does not reply within 14 days, the ticket will automatically be closed, and that has happened in this case. If you still are interested in pursuing this issue, feel free to add a comment with the requested information and we will be happy to reopen the ticket if it is still valid. Thanks!
Here is the sollution. in line: c.offsetHeight,a.extend(c.style,{minHeight:"100px",height:"auto",padding:0,borderWidth:0}),a.support.minHeight=c.offsetHeight===100,a.support.selectstart="onselectstart"in c,b.removeChild(c).style.display="none"}),a.extend(a.ui,{plugin:{add:function(b,c,d){var e=a.ui[b].prototype;
Change minHeight to 0px: c.offsetHeight,a.extend(c.style,{minHeight:"0px",height:"auto",padding:0,borderWidth:0}),a.support.minHeight=c.offsetHeight===100,a.support.selectstart="onselectstart"in c,b.removeChild(c).style.display="none"}),a.extend(a.ui,{plugin:{add:function(b,c,d){var e=a.ui[b].prototype;