$scope
$scope
Hmm, interesting idea. I don't remember what I tried. I think I tried with additional elements and did not get the desired behavior. In the end had to add a...
I upgraded from 0.1.4 to 0.2.1, and PhantomJS is failing to launch. Reverting for now.
`$rootScope.$broadcast` should work. Just inject `$rootScope` into your controller.
`angular.element(document).ready(...)` didn't work, says `Need to call angularAMD.bootstrap(app) first`. But this works: ``` define(['angularAMD'], function (angularAMD) { require(['app'], function () { angularAMD.inject(function (...) { //code to execute instead of using...
Hey. I'm trying to refactor my `app.js` file today, so I'm back here again. I think we need to be able to do `angularAMD.config(...)` and `angularAMD.run(...)`. Is there any reason...