Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 6b57198

Browse files
Pablo-IvanNarretz
authored andcommitted
docs(README): add https links, improve style
1 parent 9978de1 commit 6b57198

File tree

1 file changed

+19
-14
lines changed

1 file changed

+19
-14
lines changed

README.md

Lines changed: 19 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,21 @@ synchronizes data from your UI (view) with your JavaScript objects (model) throu
88
binding. To help you structure your application better and make it easy to test, AngularJS teaches
99
the browser how to do dependency injection and inversion of control.
1010

11-
Oh yeah and it helps with server-side communication, taming async callbacks with promises and
12-
deferreds. It also makes client-side navigation and deeplinking with hashbang urls or HTML5 pushState a
13-
piece of cake. Best of all?? It makes development fun!
14-
15-
* Web site: http://angularjs.org
16-
* Tutorial: http://docs.angularjs.org/tutorial
17-
* API Docs: http://docs.angularjs.org/api
18-
* Developer Guide: http://docs.angularjs.org/guide
11+
It also helps with server-side communication, taming async callbacks with promises and deferreds,
12+
and it makes client-side navigation and deeplinking with hashbang urls or HTML5 pushState a
13+
piece of cake. Best of all? It makes development fun!
14+
15+
* Web site: https://angularjs.org
16+
* Tutorial: https://docs.angularjs.org/tutorial
17+
* API Docs: https://docs.angularjs.org/api
18+
* Developer Guide: https://docs.angularjs.org/guide
1919
* Contribution guidelines: [CONTRIBUTING.md](https://github.com/angular/angular.js/blob/master/CONTRIBUTING.md)
20-
* Dashboard: http://dashboard.angularjs.org
21-
20+
* Dashboard: https://dashboard.angularjs.org
21+
22+
2223
Building AngularJS
2324
---------
24-
[Once you have your environment set up](http://docs.angularjs.org/misc/contribute) just run:
25+
[Once you have set up your environment](httpd://docs.angularjs.org/misc/contribute), just run:
2526

2627
grunt package
2728

@@ -37,8 +38,12 @@ To execute end-to-end (e2e) tests, use:
3738
grunt package
3839
grunt test:e2e
3940

40-
To learn more about the grunt tasks, run `grunt --help` and also read our
41-
[contribution guidelines](https://github.com/angular/angular.js/blob/master/CONTRIBUTING.md).
41+
To learn more about the grunt tasks, run `grunt --help`
42+
43+
Contribute & Develop
44+
--------------------
45+
46+
We've set up a separate document for our [contribution guidelines](https://github.com/angular/angular.js/blob/master/CONTRIBUTING.md).
4247

4348

4449
[![Analytics](https://ga-beacon.appspot.com/UA-8594346-11/angular.js/README.md?pixel)](https://github.com/igrigorik/ga-beacon)
@@ -48,7 +53,7 @@ What to use AngularJS for and when to use it
4853
AngularJS is the next generation framework where each component is designed to work with every other component in an interconnected way like a well-oiled machine. AngularJS is JavaScript MVC made easy and done right. (Well it is not really MVC, read on, to understand what this means.)
4954

5055
#### MVC, no, MV* done the right way!
51-
MVC, short for Model-View-Controller, is a design pattern, i.e. how the code should be organized and how the different parts of an application separated for proper readability and debugging. Model is the data and the database. View is the user interface and what the user sees. Controller is the main link between Model and View. These are the three pillars of major programming frameworks present on the market today. On the other hand AngularJS works on MV*, short for Model-View-_Whatever_. The _Whatever_ is AngularJS's way of telling that you may create any kind of linking between the Model and the View here.
56+
MVC, short for Model-View-Controller, is a design pattern, i.e. how the code should be organized and how the different parts of an application separated for proper readability and debugging. Model is the data and the database. View is the user interface and what the user sees. Controller is the main link between Model and View. These are the three pillars of major programming frameworks present on the market today. On the other hand AngularJS works on MV*, short for Model-View-_Whatever_. The _Whatever_ is AngularJS's way of telling that you may create any kind of linking between the Model and the View here.
5257

5358
Unlike other frameworks in any programming language, where MVC, the three separate components, each one has to be written and then connected by the programmer, AngularJS helps the programmer by asking him/her to just create these and everything else will be taken care of by AngularJS.
5459

0 commit comments

Comments
 (0)