| Index: samples/calculator/tape.dart
|
| diff --git a/samples/calculator/tape.dart b/samples/calculator/tape.dart
|
| index 93e5a1369c99b2f90a9d80056a51dd19d6ad91e8..cc4c6eb7bc3f1c9c22d740c5cc1286515e70e714 100644
|
| --- a/samples/calculator/tape.dart
|
| +++ b/samples/calculator/tape.dart
|
| @@ -220,7 +220,7 @@ class Tape {
|
| scrollToTapeBottom();
|
| }
|
|
|
| - bool get isClear() {
|
| + bool get isClear {
|
| return tapeUI.tape.elements.last().classes.contains(TapeUI.clearCalc);
|
| }
|
|
|
| @@ -232,8 +232,8 @@ class Tape {
|
| mySettings = new Settings(settingsUI, Settings.THEME_BUTTON);
|
| }
|
|
|
| - DivElement get activeInput() => window.document.query("#activeInput");
|
| - DivElement get activeTotal() => window.document.query("#activeTotal");
|
| + DivElement get activeInput => window.document.query("#activeInput");
|
| + DivElement get activeTotal => window.document.query("#activeTotal");
|
|
|
| void clear() {
|
| final element = new Element.tag('div');
|
|
|