我编写了一个AngularJS应用程序,从浏览器启动它时效果很好。但是,当我尝试在我的应用程序之一的jQuery对话框中启动相同的应用程序时,它永远不会运行。我看到该应用加载了Chrome开发人员工具栏中的所有脚本,但它从未点击过调试器; app.run方法中的语句。我在这里错过了什么吗?
以下是我尝试使用jQuery对话框启动我的应用程序:
var windowWidth = $(window).width()-40;
var windowHeight = $(window).height()-40;
$("#div").load('<link to my angular app>').dialog({ modal: true, height: windowHeight, width: windowWidth, title: "Angular App" });