@@ -138,7 +138,7 @@ and use the AngularJS Material distribution files.
138
138
Change to your project's root directory.
139
139
140
140
``` 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.
142
142
npm install angular-material --save
143
143
144
144
# 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
147
147
148
148
#### Other Dependency Managers
149
149
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.
156
153
157
154
#### CDN
158
155
159
- CDN versions of AngularJS Material are now available.
156
+ CDN versions of AngularJS Material are available.
160
157
161
158
With the Google CDN, you will not need to download local copies of the distribution files. Instead
162
159
simply 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://
166
163
``` html
167
164
<head >
168
165
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" >
171
168
172
169
</head >
173
170
<body >
174
171
175
172
<!-- 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 >
180
177
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 >
183
180
</body >
184
181
```
185
182
186
183
Developers 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 ) :
189
185
190
186
``` html
191
187
<head >
@@ -197,10 +193,10 @@ pull directly from the distribution GitHub
197
193
<body >
198
194
199
195
<!-- 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 >
204
200
205
201
<!-- AngularJS Material Javascript using GitCDN to load directly from `bower-material/master` -->
206
202
<script src =" https://gitcdn.xyz/cdn/angular/bower-material/master/angular-material.js" ></script >
0 commit comments