gigaZhang / crux-framework

Automatically exported from code.google.com/p/crux-framework
0 stars 0 forks source link

ColorPicker component does not work on Internet Explorer 8 #653

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
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:<skipped>: 'resizeHandlerRegistration' is null or is not an 
object.

Original issue reported on code.google.com by flavia.jesus@triggolabs.com on 20 Mar 2015 at 6:02

GoogleCodeExporter commented 9 years ago
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) ...

Original comment by samuel@cruxframework.org on 20 Mar 2015 at 7:10