| Index: tools/dom/src/dart2js_CustomElementSupport.dart
|
| diff --git a/tools/dom/src/dart2js_CustomElementSupport.dart b/tools/dom/src/dart2js_CustomElementSupport.dart
|
| index e601ef03ab63612144c0cf35123a636284814b0c..95c64b678f51a7821c8c6dffc510de769523f684 100644
|
| --- a/tools/dom/src/dart2js_CustomElementSupport.dart
|
| +++ b/tools/dom/src/dart2js_CustomElementSupport.dart
|
| @@ -4,8 +4,8 @@
|
|
|
| part of dart.dom.html;
|
|
|
| -_callOnCreated(receiver) {
|
| - return receiver.onCreated();
|
| +_callCreated(receiver) {
|
| + return receiver.created();
|
| }
|
|
|
| _makeCreatedCallbackMethod() {
|
| @@ -15,7 +15,7 @@ _makeCreatedCallbackMethod() {
|
| return invokeCallback(this);
|
| };
|
| })(#))''',
|
| - convertDartClosureToJS(_callOnCreated, 1));
|
| + convertDartClosureToJS(_callCreated, 1));
|
| }
|
|
|
| void _registerCustomElement(context, document, String tag, Type type) {
|
|
|