CruxFramework / crux-widgets

6 stars 4 forks source link

ColorPicker component does not work on Internet Explorer 8 #653

Closed admtriggo closed 9 years ago

admtriggo commented 9 years ago

From flavia.jesus@triggolabs.com on March 20, 2015 15:02:57

When trying to use the colorPicker component on Internet Explorer 8, open a pop-up with the following informations: Exeception caught: Exception caught:(TypeError) number: -2146823281 description: 'resizeHandlerRegistration' is null or is not an object _gwt$exception:: 'resizeHandlerRegistration' is null or is not an object.

Original issue: http://code.google.com/p/crux-framework/issues/detail?id=653

admtriggo commented 9 years ago

From samuel@cruxframework.org on March 20, 2015 12:10:17

Impossible to fix due to a GWT bug:

this will work: private boolean test = true; public myMethod() { if(test) ...

this will not work: private boolean test; public myMethod() { if(test) ...

Status: Invalid