I tried the following with requirejs domReady and jQuery domReady together and its not working ![]()

- require(["jquery","can","./libs/require/domReady!","controllers/HelloWorldController"],
- function($,can,domReady, HelloWorldController){
- can.route.ready(false); // added this to not init route yet
- $(function ($) {
- console.log("app init");
- new HelloWorldController('#contentWrapper');
- can.route.ready(true);// init route
- });
- });