angularコントローラー内に関数があります。この関数をドキュメントの準備ができたときに実行したいのですが、domが作成されるとangularが実行することに気付きました。
function myController($scope)
{
$scope.init = function()
{
// I'd like to run this on document ready
}
$scope.init(); // doesn't work, loads my init before the page has completely loaded
}
どうすればこれを実行できるか知っている人はいますか?