| Age | Commit message (Collapse) | Author | 
|---|
|  |  | 
|  | In IE window.console.log and friends are functions that don't have apply or call fns.
For this reason we have to treat them specially and do our best to log at least
something when running in this browser.
Closes #805 | 
|  |  | 
|  |  | 
|  |  | 
|  |  | 
|  |  | 
|  | it's not useful any more and it only makes the docs look ugly | 
|  |  | 
|  |  | 
|  | is no longer auto-published on the root scope, so we need to publish
it via a controller | 
|  | the flag must be in all src and test files so that we get the benefit of
running in the strict mode even in jstd
the following script was used to modify all files:
for file in `find src test -name "*.js"`; do
  echo -e "'use strict';\n" > temp.txt
  cat $file >> temp.txt
  mv temp.txt $file
done | 
|  | now that we require DI everywhere, we don't need any of these
services to be eager - they get initialized when and only when
they are requested. | 
|  | - split up services into files under src/service
- split up specs into files under test/service
- rewrite all specs so that they don't depend on one global forEach
- get rid of obsolete code and tests in ng:switch
- rename mock $log spec from "$log" to "$log mock" |