├── .yo-rc.json
├── firebase-debug.log
├── .gitattributes
├── .idea
├── .name
├── misc.xml
├── scopes
│ └── scope_settings.xml
├── encodings.xml
├── vcs.xml
├── jsLibraryMappings.xml
├── modules.xml
├── weighIn-project.iml
├── libraries
│ └── weighIn_project_node_modules.xml
└── workspace.xml
├── app
├── .buildignore
├── robots.txt
├── favicon.ico
├── images
│ ├── yeoman.png
│ ├── scale-icon.png
│ ├── scale-icon-2.png
│ ├── scale-icon-blue.png
│ ├── scale-icon-yellow.png
│ └── jumbotronbackground.jpg
├── scripts
│ ├── angularfire
│ │ ├── config.js
│ │ ├── auth.js
│ │ └── firebase.ref.js
│ ├── filters
│ │ └── reverse.js
│ ├── controllers
│ │ ├── adduser.js
│ │ ├── user.js
│ │ ├── main.js
│ │ ├── headercontroller.js
│ │ ├── chat.js
│ │ ├── account.js
│ │ ├── login.js
│ │ └── userlist.js
│ ├── app.js
│ ├── directives
│ │ ├── ngHideAuth.js
│ │ └── ngShowAuth.js
│ ├── services
│ │ └── fbfactory.js
│ └── routes.js
├── views
│ ├── chat.html
│ ├── main.html
│ ├── login.html
│ ├── userlist.html
│ ├── account.html
│ ├── user.html
│ └── adduser.html
├── styles
│ └── main.css
├── 404.html
├── index.html
└── .htaccess
├── .bowerrc
├── .gitignore
├── sitemap.pdf
├── .travis.yml
├── test
├── spec
│ ├── services
│ │ └── fbfactory.js
│ └── controllers
│ │ ├── main.js
│ │ ├── user.js
│ │ ├── adduser.js
│ │ ├── userlist.js
│ │ └── headercontroller.js
├── .jshintrc
└── karma.conf.js
├── .jshintrc
├── .editorconfig
├── bower.json
├── weigh-in.json
├── package.json
├── README.md
└── Gruntfile.js
/.yo-rc.json:
--------------------------------------------------------------------------------
1 | {}
2 |
--------------------------------------------------------------------------------
/firebase-debug.log:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto
--------------------------------------------------------------------------------
/.idea/.name:
--------------------------------------------------------------------------------
1 | weighIn-project
--------------------------------------------------------------------------------
/app/.buildignore:
--------------------------------------------------------------------------------
1 | *.coffee
--------------------------------------------------------------------------------
/.bowerrc:
--------------------------------------------------------------------------------
1 | {
2 | "directory": "bower_components"
3 | }
4 |
--------------------------------------------------------------------------------
/app/robots.txt:
--------------------------------------------------------------------------------
1 | # robotstxt.org
2 |
3 | User-agent: *
4 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | dist
3 | .tmp
4 | .sass-cache
5 | bower_components
6 |
--------------------------------------------------------------------------------
/sitemap.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/runtime/weighin-app/master/sitemap.pdf
--------------------------------------------------------------------------------
/app/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/runtime/weighin-app/master/app/favicon.ico
--------------------------------------------------------------------------------
/app/images/yeoman.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/runtime/weighin-app/master/app/images/yeoman.png
--------------------------------------------------------------------------------
/app/images/scale-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/runtime/weighin-app/master/app/images/scale-icon.png
--------------------------------------------------------------------------------
/app/images/scale-icon-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/runtime/weighin-app/master/app/images/scale-icon-2.png
--------------------------------------------------------------------------------
/app/images/scale-icon-blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/runtime/weighin-app/master/app/images/scale-icon-blue.png
--------------------------------------------------------------------------------
/app/images/scale-icon-yellow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/runtime/weighin-app/master/app/images/scale-icon-yellow.png
--------------------------------------------------------------------------------
/app/images/jumbotronbackground.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/runtime/weighin-app/master/app/images/jumbotronbackground.jpg
--------------------------------------------------------------------------------
/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
{{err}}
14 | -------------------------------------------------------------------------------- /app/scripts/controllers/adduser.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** 4 | * @ngdoc function 5 | * @name weighInApp.controller:AdduserCtrl 6 | * @description 7 | * # AdduserCtrl 8 | * Controller of the weighInApp 9 | */ 10 | angular.module('weighInApp') 11 | .controller('AdduserCtrl', function ($scope) { 12 | $scope.awesomeThings = [ 13 | 'HTML5 Boilerplate', 14 | 'AngularJS', 15 | 'Karma' 16 | ]; 17 | }); 18 | -------------------------------------------------------------------------------- /app/scripts/controllers/user.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** 4 | * @ngdoc function 5 | * @name weighInApp.controller:UserCtrl 6 | * @description 7 | * # UserCtrl 8 | * Controller of the weighInApp 9 | */ 10 | angular.module('weighInApp') 11 | .controller('UserCtrl', function ($scope) { 12 | $scope.awesomeThings = [ 13 | 'HTML5 Boilerplate', 14 | 'AngularJS', 15 | 'Karma' 16 | ]; 17 | }); 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /test/spec/services/fbfactory.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | describe('Service: FBFactory', function () { 4 | 5 | // load the service's module 6 | beforeEach(module('weighInApp')); 7 | 8 | // instantiate service 9 | var FBFactory; 10 | beforeEach(inject(function (_FBFactory_) { 11 | FBFactory = _FBFactory_; 12 | })); 13 | 14 | it('should do something', function () { 15 | expect(!!FBFactory).toBe(true); 16 | }); 17 | 18 | }); 19 | -------------------------------------------------------------------------------- /app/scripts/app.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** 4 | * @ngdoc overview 5 | * @name weighInApp 6 | * @description 7 | * # weighInApp 8 | * 9 | * Main module of the application. 10 | */ 11 | angular.module('weighInApp', [ 12 | 'ngAnimate', 13 | 'ngCookies', 14 | 'ngResource', 15 | 'ngRoute', 16 | 'ngSanitize', 17 | 'ngTouch', 18 | 'firebase', 19 | 'firebase.ref', 20 | 'firebase.auth', 21 | 'chart.js' 22 | ]); 23 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "bitwise": true, 3 | "browser": true, 4 | "camelcase": true, 5 | "curly": true, 6 | "eqeqeq": true, 7 | "esnext": true, 8 | "immed": true, 9 | "indent": 2, 10 | "latedef": "nofunc", 11 | "newcap": true, 12 | "noarg": true, 13 | "node": true, 14 | "quotmark": "single", 15 | "strict": true, 16 | "undef": true, 17 | "unused": true, 18 | "globals": { 19 | "angular": false, 20 | "firebase": false 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /test/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "bitwise": true, 3 | "browser": true, 4 | "camelcase": true, 5 | "curly": true, 6 | "eqeqeq": true, 7 | "esnext": true, 8 | "immed": true, 9 | "jasmine": true, 10 | "latedef": true, 11 | "newcap": true, 12 | "noarg": true, 13 | "node": true, 14 | "quotmark": "single", 15 | "strict": true, 16 | "undef": true, 17 | "unused": true, 18 | "globals": { 19 | "angular": false, 20 | "inject": false 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /app/scripts/controllers/main.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** 4 | * @ngdoc function 5 | * @name weighInApp.controller:MainCtrl 6 | * @description 7 | * # MainCtrl 8 | * Controller of the weighInApp 9 | */ 10 | angular.module('weighInApp') 11 | .controller('MainCtrl', ['$scope', 'users', 12 | function ($scope, users) { 13 | 14 | console.log("MainCtrl"); 15 | 16 | $scope.users = users; 17 | // console.log($scope.users); 18 | 19 | }]); 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig helps developers define and maintain consistent 2 | # coding styles between different editors and IDEs 3 | # editorconfig.org 4 | 5 | root = true 6 | 7 | 8 | [*] 9 | 10 | # Change these settings to your own preference 11 | indent_style = space 12 | indent_size = 2 13 | 14 | # We recommend you to keep these unchanged 15 | end_of_line = lf 16 | charset = utf-8 17 | trim_trailing_whitespace = true 18 | insert_final_newline = true 19 | 20 | [*.md] 21 | trim_trailing_whitespace = false 22 | -------------------------------------------------------------------------------- /.idea/libraries/weighIn_project_node_modules.xml: -------------------------------------------------------------------------------- 1 |{{err}}
27 | 28 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "weighin", 3 | "version": "0.0.0", 4 | "dependencies": { 5 | "angular-chart.js": "^1.1.1", 6 | "chart.js": "^2.4.0" 7 | }, 8 | "repository": {}, 9 | "devDependencies": { 10 | "chalk": "^0.4.0", 11 | "grunt": "^0.4.5", 12 | "grunt-autoprefixer": "^2.0.0", 13 | "grunt-concurrent": "^1.0.0", 14 | "grunt-contrib-clean": "^0.6.0", 15 | "grunt-contrib-concat": "^0.5.0", 16 | "grunt-contrib-connect": "^0.9.0", 17 | "grunt-contrib-copy": "^0.7.0", 18 | "grunt-contrib-cssmin": "^0.12.0", 19 | "grunt-contrib-htmlmin": "^0.4.0", 20 | "grunt-contrib-imagemin": "^0.9.2", 21 | "grunt-contrib-jshint": "^0.11.0", 22 | "grunt-contrib-uglify": "^0.7.0", 23 | "grunt-contrib-watch": "^0.6.1", 24 | "grunt-filerev": "^2.1.2", 25 | "grunt-google-cdn": "^0.4.3", 26 | "grunt-karma": "*", 27 | "grunt-newer": "^1.1.0", 28 | "grunt-ng-annotate": "^0.9.2", 29 | "grunt-svgmin": "^2.0.0", 30 | "grunt-usemin": "^3.0.0", 31 | "grunt-wiredep": "^2.0.0", 32 | "jshint-stylish": "^1.0.0", 33 | "karma-jasmine": "*", 34 | "karma-phantomjs-launcher": "*", 35 | "load-grunt-tasks": "^3.1.0", 36 | "time-grunt": "^1.0.0" 37 | }, 38 | "engines": { 39 | "node": ">=0.10.0" 40 | }, 41 | "scripts": { 42 | "test": "grunt test" 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /app/views/userlist.html: -------------------------------------------------------------------------------- 1 |24 | 25 |
26 |Sorry, but the page you were trying to view does not exist.
146 |It looks like this was the result of either:
147 |