Skip to content

Commit

Permalink
updating ionic to beta.14-nightly-1102, now showing issue with scroll…
Browse files Browse the repository at this point in the history
…ing side menu
  • Loading branch information
vgmcglaughlin committed Mar 3, 2015
1 parent ac1962c commit 0da0bc6
Show file tree
Hide file tree
Showing 89 changed files with 19,941 additions and 10,190 deletions.
4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"name": "ionic-sidemenu",
"private": "true",
"devDependencies": {
"ionic": "driftyco/ionic-bower#1.0.0-beta.14"
"ionic": "driftyco/ionic-bower#1.0.0-beta.14-nightly-1102"
}
}
}
19 changes: 19 additions & 0 deletions www/lib/angular-animate/.bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "angular-animate",
"version": "1.3.6",
"main": "./angular-animate.js",
"ignore": [],
"dependencies": {
"angular": "1.3.6"
},
"homepage": "https://github.com/angular/bower-angular-animate",
"_release": "1.3.6",
"_resolution": {
"type": "version",
"tag": "v1.3.6",
"commit": "d38c9593911d231cce076c1b64f823e572813214"
},
"_source": "git://github.com/angular/bower-angular-animate.git",
"_target": "1.3.6",
"_originalSource": "angular-animate"
}
77 changes: 77 additions & 0 deletions www/lib/angular-animate/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
# packaged angular-animate

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

## Install

You can install this package either with `npm` or with `bower`.

### npm

```shell
npm install angular-animate
```

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

```html
<script src="/node_modules/angular-animate/angular-animate.js"></script>
```

Then add `ngAnimate` as a dependency for your app:

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

Note that this package is not in CommonJS format, so doing `require('angular-animate')` will
return `undefined`.

### bower

```shell
bower install angular-animate
```

Then add a `<script>` to your `index.html`:

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

Then add `ngAnimate` as a dependency for your app:

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

## Documentation

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

## 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.
File renamed without changes.
8 changes: 8 additions & 0 deletions www/lib/angular-animate/angular-animate.min.js.map

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions www/lib/angular-animate/bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "angular-animate",
"version": "1.3.6",
"main": "./angular-animate.js",
"ignore": [],
"dependencies": {
"angular": "1.3.6"
}
}
26 changes: 26 additions & 0 deletions www/lib/angular-animate/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"name": "angular-animate",
"version": "1.3.6",
"description": "AngularJS module for animations",
"main": "angular-animate.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/angular/angular.js.git"
},
"keywords": [
"angular",
"framework",
"browser",
"animation",
"client-side"
],
"author": "Angular Core Team <angular-core+npm@google.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/angular/angular.js/issues"
},
"homepage": "http://angularjs.org"
}
19 changes: 19 additions & 0 deletions www/lib/angular-sanitize/.bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "angular-sanitize",
"version": "1.3.6",
"main": "./angular-sanitize.js",
"ignore": [],
"dependencies": {
"angular": "1.3.6"
},
"homepage": "https://github.com/angular/bower-angular-sanitize",
"_release": "1.3.6",
"_resolution": {
"type": "version",
"tag": "v1.3.6",
"commit": "ccd773f961fa1fadc8d728c45a2635c73d34fb2d"
},
"_source": "git://github.com/angular/bower-angular-sanitize.git",
"_target": "1.3.6",
"_originalSource": "angular-sanitize"
}
77 changes: 77 additions & 0 deletions www/lib/angular-sanitize/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
# packaged angular-sanitize

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

## Install

You can install this package either with `npm` or with `bower`.

### npm

```shell
npm install angular-sanitize
```

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

```html
<script src="/node_modules/angular-sanitize/angular-sanitize.js"></script>
```

Then add `ngSanitize` as a dependency for your app:

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

Note that this package is not in CommonJS format, so doing `require('angular-sanitize')` will
return `undefined`.

### bower

```shell
bower install angular-sanitize
```

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

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

Then add `ngSanitize` as a dependency for your app:

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

## Documentation

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

## 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.
8 changes: 8 additions & 0 deletions www/lib/angular-sanitize/angular-sanitize.min.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions www/lib/angular-sanitize/bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "angular-sanitize",
"version": "1.3.6",
"main": "./angular-sanitize.js",
"ignore": [],
"dependencies": {
"angular": "1.3.6"
}
}
26 changes: 26 additions & 0 deletions www/lib/angular-sanitize/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"name": "angular-sanitize",
"version": "1.3.6",
"description": "AngularJS module for sanitizing HTML",
"main": "angular-sanitize.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/angular/angular.js.git"
},
"keywords": [
"angular",
"framework",
"browser",
"html",
"client-side"
],
"author": "Angular Core Team <angular-core+npm@google.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/angular/angular.js/issues"
},
"homepage": "http://angularjs.org"
}
33 changes: 33 additions & 0 deletions www/lib/angular-ui-router/.bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"name": "angular-ui-router",
"version": "0.2.13",
"main": "./release/angular-ui-router.js",
"dependencies": {
"angular": ">= 1.0.8"
},
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"component.json",
"package.json",
"lib",
"config",
"sample",
"test",
"tests",
"ngdoc_assets",
"Gruntfile.js",
"files.js"
],
"homepage": "https://github.com/angular-ui/ui-router",
"_release": "0.2.13",
"_resolution": {
"type": "version",
"tag": "0.2.13",
"commit": "c3d543aae43d4600512520a0d70723ac31f2cb62"
},
"_source": "git://github.com/angular-ui/ui-router.git",
"_target": "0.2.13",
"_originalSource": "angular-ui-router"
}
Loading

0 comments on commit 0da0bc6

Please sign in to comment.