Skip to content

Commit

Permalink
update to angular@1.2.14 and angular-socket-io@0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
btford committed Mar 3, 2014
1 parent cb5f0d1 commit 76f22c6
Show file tree
Hide file tree
Showing 29 changed files with 13,459 additions and 5,587 deletions.
7 changes: 4 additions & 3 deletions bower.json
Expand Up @@ -7,7 +7,8 @@
"components"
],
"dependencies": {
"angular": "~1.0.7",
"angular-socket-io": "~0.0.2"
"angular": "~1.2.14",
"angular-socket-io": "~0.3.0",
"angular-route": "~1.2.14"
}
}
}
19 changes: 19 additions & 0 deletions public/bower_components/angular-route/.bower.json
@@ -0,0 +1,19 @@
{
"name": "angular-route",
"version": "1.2.14",
"main": "./angular-route.js",
"dependencies": {
"angular": "1.2.14"
},
"homepage": "https://github.com/angular/bower-angular-route",
"_release": "1.2.14",
"_resolution": {
"type": "version",
"tag": "v1.2.14",
"commit": "2a998317521fb468b8b69a4a29e6be2d19bc6a3e"
},
"_source": "git://github.com/angular/bower-angular-route.git",
"_target": "~1.2.14",
"_originalSource": "angular-route",
"_direct": true
}
54 changes: 54 additions & 0 deletions public/bower_components/angular-route/README.md
@@ -0,0 +1,54 @@
# bower-angular-route

This repo is for distribution on `bower`. The source for this module is in the
[main AngularJS repo](https://github.com/angular/angular.js/tree/master/src/ngRoute).
Please file issues and pull requests against that repo.

## Install

Install with `bower`:

```shell
bower install angular-route
```

Add a `<script>` to your `index.html`:

```html
<script src="/bower_components/angular-route/angular-route.js"></script>
```

And add `ngRoute` as a dependency for your app:

```javascript
angular.module('myApp', ['ngRoute']);
```

## Documentation

Documentation is available on the
[AngularJS docs site](http://docs.angularjs.org/api/ngRoute).

## License

The MIT License

Copyright (c) 2010-2012 Google, Inc. http://angularjs.org

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

0 comments on commit 76f22c6

Please sign in to comment.