Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ client/plugins/
client/resources/
client/dist
client/www/js/config.js
client/www/lib/*
_whiteboards
server/node_modules
server/logs/logs.log
Expand Down
2 changes: 1 addition & 1 deletion client/www/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<!-- compiled css output -->
<link href='css/ionic.app.css' rel='stylesheet'>
<link href='css/style.css' rel='stylesheet'>
<script src='http://maps.google.com/maps/api/js?key=AIzaSyBceRLiJZrDWlQiK3vu2Mc6-gzp84ZQX5U'></script>
<script src='https://maps.google.com/maps/api/js?key=AIzaSyBceRLiJZrDWlQiK3vu2Mc6-gzp84ZQX5U'></script>
<script src='lib/lodash/dist/lodash.min.js'></script>
<script src='lib/ionic/js/ionic.bundle.js'></script>
<script src='lib/angular-simple-logger/dist/angular-simple-logger.min.js'></script>
Expand Down
4 changes: 2 additions & 2 deletions client/www/js/controllers/addPoiController.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ angular.module('amblr.addPOI', [])
.then(function(routes) {
//routes returns an array of objects.
//Need to loop through and create an object with the id as keys for easy look up to add to markers
for (let route of routes) {
for (var route of routes) {
//make key of allRoutes equal to the route's id and the value equal to the name
$scope.allRoutes[route._id] = route.name;
}
Expand Down Expand Up @@ -158,4 +158,4 @@ angular.module('amblr.addPOI', [])
$scope.modal.hide();
});

});
});
2 changes: 1 addition & 1 deletion client/www/js/controllers/mapController.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ angular.module('amblr.map', ['uiGmapgoogle-maps'])
.then(function(routes) {
//routes returns an array of objects.
//Need to loop through and create an object with the id as keys for easy look up to add to markers
for (let route of routes) {
for (var route of routes) {
//make key of allRoutes equal to the route's id and the value equal to the name
$scope.allRoutes[route._id] = route.name;
}
Expand Down
19 changes: 19 additions & 0 deletions client/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.4.3",
"main": "./angular-animate.js",
"ignore": [],
"dependencies": {
"angular": "1.4.3"
},
"homepage": "https://github.com/angular/bower-angular-animate",
"_release": "1.4.3",
"_resolution": {
"type": "version",
"tag": "v1.4.3",
"commit": "4ce2a76359401102d2e0146ccf69e6c060799ff8"
},
"_source": "https://github.com/angular/bower-angular-animate.git",
"_target": "1.4.3",
"_originalSource": "angular-animate"
}
68 changes: 68 additions & 0 deletions client/www/lib/angular-animate/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
# 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
```

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

```javascript
angular.module('myApp', [require('angular-animate')]);
```

### 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-2015 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.
Loading