From 88916c813c7a46be3438c4c1a3b4546767fe23a8 Mon Sep 17 00:00:00 2001 From: Steve Orvell Date: Wed, 12 Jun 2013 10:48:23 -0700 Subject: [PATCH] insertedinsertedCallback -> inserted; removedCallback -> removed --- polymer-ui-clock/polymer-ui-clock.html | 4 ++-- polymer-ui-menu/polymer-ui-menu.html | 2 +- polymer-ui-theme-aware/polymer-ui-theme-aware.html | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/polymer-ui-clock/polymer-ui-clock.html b/polymer-ui-clock/polymer-ui-clock.html index f674c7b..bad18e2 100644 --- a/polymer-ui-clock/polymer-ui-clock.html +++ b/polymer-ui-clock/polymer-ui-clock.html @@ -26,12 +26,12 @@ seconds: -1, minutes: -1, hours: -1, - insertedCallback: function() { + inserted: function() { // when we are inserted into DOM, start watching the time this.updateTime(); this.interval = setInterval(this.updateTime.bind(this), 1000); }, - removedCallback: function() { + removed: function() { // when we are removed from DOM, stop watching the time clearInterval(this.interval); }, diff --git a/polymer-ui-menu/polymer-ui-menu.html b/polymer-ui-menu/polymer-ui-menu.html index 942da18..8edd9b7 100644 --- a/polymer-ui-menu/polymer-ui-menu.html +++ b/polymer-ui-menu/polymer-ui-menu.html @@ -25,7 +25,7 @@