CQ.WCM.isSidekickReady() not working
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.html
I've included this code in my component.jsp:
<script> function checkSidekickStatus() { if (CQ.WCM.isSidekickReady()) { // do stuff clearTimeout(timeout); } } var timeout = setInterval(checkSidekickStatus, 1000); </script>But, it never gets past the "CQ.WCM.isSidekickReady()" check, even though the Sidekick is clearly ready. Any suggestions?