X-Git-Url: http://git.bytex64.net/?a=blobdiff_plain;f=www%2Fjssrc%2Fblerg%2FBlerg.js;h=6eac0d89b61b63a63d6953a4b842067bfd05a9e9;hb=4377f9e224f34c05e7a5de04f390bb2a0cabf6eb;hp=45b7d5f2cf373bd80fcb11dd3b6a339dd0fd4c90;hpb=fc5b9f1f68322c876b331c049749f113eb0271f7;p=blerg.git diff --git a/www/jssrc/blerg/Blerg.js b/www/jssrc/blerg/Blerg.js index 45b7d5f..6eac0d8 100644 --- a/www/jssrc/blerg/Blerg.js +++ b/www/jssrc/blerg/Blerg.js @@ -8,7 +8,8 @@ enyo.kind({ onTryLogin: "tryLogin", onTryLogout: "tryLogout", onSetTitle: "setTitle", - onPostVisibility: "postVisibilityUpdate" + onPostVisibility: "postVisibilityUpdate", + onReload: "sendReload" }, components: [ {classes: "blerg-header", components: [ @@ -88,5 +89,8 @@ enyo.kind({ postVisibilityUpdate: function(inSender, inEvent) { this.$.post.waterfall('onPostVisibility', inEvent); this.$.controls.waterfall('onPostVisibility', inEvent); + }, + sendReload: function() { + this.$.main.waterfall('onReload'); } });