From 772872fb030aa0127da25f55bff66f2b5979aa8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Sat, 13 Jan 2018 18:10:47 -0500 Subject: [PATCH] trigger action:windows.loaded on coldload if widgets are already rendered --- public/src/widgets.js | 1 + 1 file changed, 1 insertion(+) diff --git a/public/src/widgets.js b/public/src/widgets.js index badc55c892..51f6e0d2be 100644 --- a/public/src/widgets.js +++ b/public/src/widgets.js @@ -15,6 +15,7 @@ locations.forEach(function (location) { var area = $('#content [widget-area="' + location + '"]'); if (area.length) { + $(window).trigger('action:widgets.loaded', {}); return; }