capdan
11 Jun 2013, 3:25 AM
Using 3.4.1.1 on IE8
Clicking a dropdown caused an invalid argument error, and the dropdown doesn't open
Inside: Ext.Shadow = function(config)
...
case ("sides")
....
a.h -= 1
I fixed this by changing the line above to :
a.h = Math.max(0, a.h - 1);
Clicking a dropdown caused an invalid argument error, and the dropdown doesn't open
Inside: Ext.Shadow = function(config)
...
case ("sides")
....
a.h -= 1
I fixed this by changing the line above to :
a.h = Math.max(0, a.h - 1);