From 87e5c733a45f2b44cb23da5ec524ce9bbadff4b0 Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Fri, 17 Jul 2015 13:13:30 -0400 Subject: [PATCH] added dedicated client-side action hook for when the client-side finishes loading --- public/src/app.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/src/app.js b/public/src/app.js index 9a80125dfa..3cf6947073 100644 --- a/public/src/app.js +++ b/public/src/app.js @@ -545,6 +545,8 @@ app.cacheBuster = null; // templates.js helpers helpers.register(); + + $(window).trigger('action:app.load'); }); }); }; @@ -608,5 +610,4 @@ app.cacheBuster = null; }); app.alternatingTitle(''); - }());