Skip to content

Commit

Permalink
add vendor library using bower: jquery, bootstrap, angualrjs
Browse files Browse the repository at this point in the history
  • Loading branch information
beanmilk committed Sep 4, 2014
1 parent fc489bf commit c3e2cda
Show file tree
Hide file tree
Showing 263 changed files with 89,485 additions and 0 deletions.
22 changes: 22 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"name": "beanmilk.github.io",
"version": "0.0.1",
"homepage": "https://github.com/beanmilk/beanmilk.github.io",
"authors": [
"beanmilk <[email protected]>"
],
"description": "practice",
"license": "MIT",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
],
"dependencies": {
"bootstrap": "~3.2.0",
"jquery": "1.9.1",
"angularjs": "~1.2.23"
}
}
17 changes: 17 additions & 0 deletions bower_components/angularjs/.bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"name": "angular",
"version": "1.2.23",
"main": "./angular.js",
"dependencies": {},
"homepage": "https://github.com/angular/bower-angular",
"_release": "1.2.23",
"_resolution": {
"type": "version",
"tag": "v1.2.23",
"commit": "53716560a512e598c32c5dbc70b2e41a793443e9"
},
"_source": "git://github.com/angular/bower-angular.git",
"_target": "~1.2.23",
"_originalSource": "angularjs",
"_direct": true
}
48 changes: 48 additions & 0 deletions bower_components/angularjs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# bower-angular

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

## Install

Install with `bower`:

```shell
bower install angular
```

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

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

## Documentation

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

## 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.
24 changes: 24 additions & 0 deletions bower_components/angularjs/angular-csp.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/* Include this file in your html if you are using the CSP mode. */

@charset "UTF-8";

[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak],
.ng-cloak, .x-ng-cloak,
.ng-hide {
display: none !important;
}

ng\:form {
display: block;
}

.ng-animate-block-transitions {
transition:0s all!important;
-webkit-transition:0s all!important;
}

/* show the element during a show/hide animation when the
* animation is ongoing, but the .ng-hide class is active */
.ng-hide-add-active, .ng-hide-remove {
display: block!important;
}
Loading

0 comments on commit c3e2cda

Please sign in to comment.