Skip to content

Commit aed3d2c

Browse files
author
Sreekanth
committed
third commit
1 parent a30ead6 commit aed3d2c

988 files changed

Lines changed: 248757 additions & 1 deletion

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,3 @@ config.js
55
public/lib
66
.c9revisions
77
.settings
8-
public/css/*
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "angular-route",
3+
"version": "1.2.18",
4+
"main": "./angular-route.js",
5+
"dependencies": {
6+
"angular": "1.2.18"
7+
},
8+
"homepage": "https://github.com/angular/bower-angular-route",
9+
"_release": "1.2.18",
10+
"_resolution": {
11+
"type": "version",
12+
"tag": "v1.2.18",
13+
"commit": "f737658e372681eb1843a7f5790a3893d754a389"
14+
},
15+
"_source": "git://github.com/angular/bower-angular-route.git",
16+
"_target": "~1.2.15",
17+
"_originalSource": "angular-route"
18+
}

public/css/angular-route/README.md

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
# bower-angular-route
2+
3+
This repo is for distribution on `bower`. The source for this module is in the
4+
[main AngularJS repo](https://github.com/angular/angular.js/tree/master/src/ngRoute).
5+
Please file issues and pull requests against that repo.
6+
7+
## Install
8+
9+
Install with `bower`:
10+
11+
```shell
12+
bower install angular-route
13+
```
14+
15+
Add a `<script>` to your `index.html`:
16+
17+
```html
18+
<script src="/bower_components/angular-route/angular-route.js"></script>
19+
```
20+
21+
And add `ngRoute` as a dependency for your app:
22+
23+
```javascript
24+
angular.module('myApp', ['ngRoute']);
25+
```
26+
27+
## Documentation
28+
29+
Documentation is available on the
30+
[AngularJS docs site](http://docs.angularjs.org/api/ngRoute).
31+
32+
## License
33+
34+
The MIT License
35+
36+
Copyright (c) 2010-2012 Google, Inc. http://angularjs.org
37+
38+
Permission is hereby granted, free of charge, to any person obtaining a copy
39+
of this software and associated documentation files (the "Software"), to deal
40+
in the Software without restriction, including without limitation the rights
41+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
42+
copies of the Software, and to permit persons to whom the Software is
43+
furnished to do so, subject to the following conditions:
44+
45+
The above copyright notice and this permission notice shall be included in
46+
all copies or substantial portions of the Software.
47+
48+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
49+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
50+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
51+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
52+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
53+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
54+
THE SOFTWARE.

0 commit comments

Comments
 (0)