I am trying to add some custom handling to the Sidekick and I am following this example: http://adobecms.blogspot.ca/2014/04/sidekick-customization.htmlI've included this code in my component.jsp: function checkSidekickStatus() { if (CQ.WCM.isSidekickReady()) { // do stuff clearTimeout(timeout); } } var timeout = setInterval(checkSidekickStatus, 1000); But, it never gets past the "CQ.WCM.isSidekickReady()" check, even though the Sidekick is clearly ready....