@@ -138,7 +138,7 @@ and use the AngularJS Material distribution files.
138138Change to your project's root directory.
139139
140140``` bash
141- # To get the latest stable version, use Bower from the command line.
141+ # To get the latest stable version, use NPM from the command line.
142142npm install angular-material --save
143143
144144# To get the most recent, latest committed-to-master version use:
@@ -147,16 +147,13 @@ npm install http://github.com/angular/bower-material#master --save
147147
148148#### Other Dependency Managers
149149
150- Visit [ Bower-Material] ( https://github.com/angular/bower-material/blob/master/README.md ) for more
151- details on how to install and use the AngularJS Material distribution files within your own local
152- project.
153-
154- This includes instructions for [ Bower] ( https://github.com/angular/bower-material#bower )
155- and [ JSPM] ( https://github.com/angular/bower-material#jspm ) .
150+ Visit our [ distribution repository] ( https://github.com/angular/bower-material/blob/master/README.md )
151+ for more details on how to install and use the AngularJS Material distribution
152+ files within your local project.
156153
157154#### CDN
158155
159- CDN versions of AngularJS Material are now available.
156+ CDN versions of AngularJS Material are available.
160157
161158With the Google CDN, you will not need to download local copies of the distribution files. Instead
162159simply reference the CDN urls to easily use those remote library files. This is especially useful
@@ -166,26 +163,25 @@ when using online tools such as [CodePen](http://codepen.io/), [Plunker](http://
166163``` html
167164 <head >
168165
169- <!-- AngularJS Material CSS now available via Google CDN; version 1.1.9 used here -->
170- <link rel =" stylesheet" href =" https://ajax.googleapis.com/ajax/libs/angular_material/1.1.9 /angular-material.min.css" >
166+ <!-- AngularJS Material CSS now available via Google CDN; version 1.1.21 used here -->
167+ <link rel =" stylesheet" href =" https://ajax.googleapis.com/ajax/libs/angular_material/1.1.21 /angular-material.min.css" >
171168
172169 </head >
173170 <body >
174171
175172 <!-- AngularJS Material Dependencies -->
176- <script src =" https://ajax.googleapis.com/ajax/libs/angularjs/1.7.7 /angular.min.js" ></script >
177- <script src =" https://ajax.googleapis.com/ajax/libs/angularjs/1.7.7 /angular-animate.min.js" ></script >
178- <script src =" https://ajax.googleapis.com/ajax/libs/angularjs/1.7.7 /angular-aria.min.js" ></script >
179- <script src =" https://ajax.googleapis.com/ajax/libs/angularjs/1.7.7 /angular-messages.min.js" ></script >
173+ <script src =" https://ajax.googleapis.com/ajax/libs/angularjs/1.7.9 /angular.min.js" ></script >
174+ <script src =" https://ajax.googleapis.com/ajax/libs/angularjs/1.7.9 /angular-animate.min.js" ></script >
175+ <script src =" https://ajax.googleapis.com/ajax/libs/angularjs/1.7.9 /angular-aria.min.js" ></script >
176+ <script src =" https://ajax.googleapis.com/ajax/libs/angularjs/1.7.9 /angular-messages.min.js" ></script >
180177
181- <!-- AngularJS Material Javascript now available via Google CDN; version 1.1.10 used here -->
182- <script src =" https://ajax.googleapis.com/ajax/libs/angular_material/1.1.10 /angular-material.min.js" ></script >
178+ <!-- AngularJS Material Javascript now available via Google CDN; version 1.1.21 used here -->
179+ <script src =" https://ajax.googleapis.com/ajax/libs/angular_material/1.1.21 /angular-material.min.js" ></script >
183180 </body >
184181```
185182
186183Developers seeking the latest, most-current build versions can use [ GitCDN.xyz] ( https://gitcdn.xyz/ ) to
187- pull directly from the distribution GitHub
188- [ Bower-Material] ( https://github.com/angular/bower-material ) repository:
184+ pull directly from our [ distribution repository] ( https://github.com/angular/bower-material ) :
189185
190186``` html
191187 <head >
@@ -197,10 +193,10 @@ pull directly from the distribution GitHub
197193 <body >
198194
199195 <!-- AngularJS Material Dependencies -->
200- <script src =" https://ajax.googleapis.com/ajax/libs/angularjs/1.7.7 /angular.js" ></script >
201- <script src =" https://ajax.googleapis.com/ajax/libs/angularjs/1.7.7 /angular-animate.js" ></script >
202- <script src =" https://ajax.googleapis.com/ajax/libs/angularjs/1.7.7 /angular-aria.js" ></script >
203- <script src =" https://ajax.googleapis.com/ajax/libs/angularjs/1.7.7 /angular-messages.min.js" ></script >
196+ <script src =" https://ajax.googleapis.com/ajax/libs/angularjs/1.7.9 /angular.js" ></script >
197+ <script src =" https://ajax.googleapis.com/ajax/libs/angularjs/1.7.9 /angular-animate.js" ></script >
198+ <script src =" https://ajax.googleapis.com/ajax/libs/angularjs/1.7.9 /angular-aria.js" ></script >
199+ <script src =" https://ajax.googleapis.com/ajax/libs/angularjs/1.7.9 /angular-messages.min.js" ></script >
204200
205201 <!-- AngularJS Material Javascript using GitCDN to load directly from `bower-material/master` -->
206202 <script src =" https://gitcdn.xyz/cdn/angular/bower-material/master/angular-material.js" ></script >
0 commit comments