chore(docs): re-skin main documentation

This commit is contained in:
Misko Hevery
2012-04-28 22:45:28 -07:00
parent d0159454df
commit 8e2675029f
82 changed files with 2725 additions and 2696 deletions

View File

@@ -30,7 +30,7 @@ myController.$inject = ['$location', '$log'];
<doc:example module="MyServiceModule">
<doc:source>
<script type="text/javascript">
<script>
angular.
module('MyServiceModule', []).
factory('notify', ['$window', function(win) {
@@ -74,7 +74,7 @@ Let's rewrite the above example to show the use of this implicit dependency inje
<doc:example module="MyServiceModuleDI">
<doc:source>
<script type="text/javascript">
<script>
angular.
module('MyServiceModuleDI', []).
factory('notify', function($window) {