| Index: client/samples/total/src/ColorPicker.dart
|
| diff --git a/client/samples/total/src/ColorPicker.dart b/client/samples/total/src/ColorPicker.dart
|
| index 16e01555f1fd9aa98ed5c192b7ab5960f30b8ce0..10cdf3a2ef62da72ea000bc1995deba368d91360 100644
|
| --- a/client/samples/total/src/ColorPicker.dart
|
| +++ b/client/samples/total/src/ColorPicker.dart
|
| @@ -36,7 +36,7 @@ class ColorPicker extends Picker {
|
| for (int i = 0; i < _columns; i++) {
|
| int x = _margin + i * (_width + _margin);
|
|
|
| - DivElement div = doc.createElement("div");
|
| + DivElement div = new Element.tag("div");
|
| div.attributes["class"] = "color-picker-item";
|
| div.id = "color-picker-${idx}";
|
| div.style.setProperty("position", "absolute");
|
|
|