├── .bowerrc ├── .gitignore ├── LICENSE ├── README.md ├── app ├── app.css ├── app.js ├── common │ ├── datepicker-directive.js │ ├── footer-directive.html │ ├── footer-directive.js │ ├── main-controller.js │ └── validate-english-directive.js ├── home │ ├── home-controller.js │ └── home.html ├── news-feed │ ├── feed.js │ ├── news-feed-controller.js │ └── news-feed.html └── users │ ├── authentication.js │ └── identity.js ├── bower.json ├── index.html └── package.json /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/bower_components" 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/AngularJS-SocialNetwork/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/AngularJS-SocialNetwork/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Social Network - Angular JS demo project -------------------------------------------------------------------------------- /app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/AngularJS-SocialNetwork/HEAD/app/app.css -------------------------------------------------------------------------------- /app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/AngularJS-SocialNetwork/HEAD/app/app.js -------------------------------------------------------------------------------- /app/common/datepicker-directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/AngularJS-SocialNetwork/HEAD/app/common/datepicker-directive.js -------------------------------------------------------------------------------- /app/common/footer-directive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/AngularJS-SocialNetwork/HEAD/app/common/footer-directive.html -------------------------------------------------------------------------------- /app/common/footer-directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/AngularJS-SocialNetwork/HEAD/app/common/footer-directive.js -------------------------------------------------------------------------------- /app/common/main-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/AngularJS-SocialNetwork/HEAD/app/common/main-controller.js -------------------------------------------------------------------------------- /app/common/validate-english-directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/AngularJS-SocialNetwork/HEAD/app/common/validate-english-directive.js -------------------------------------------------------------------------------- /app/home/home-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/AngularJS-SocialNetwork/HEAD/app/home/home-controller.js -------------------------------------------------------------------------------- /app/home/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/AngularJS-SocialNetwork/HEAD/app/home/home.html -------------------------------------------------------------------------------- /app/news-feed/feed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/AngularJS-SocialNetwork/HEAD/app/news-feed/feed.js -------------------------------------------------------------------------------- /app/news-feed/news-feed-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/AngularJS-SocialNetwork/HEAD/app/news-feed/news-feed-controller.js -------------------------------------------------------------------------------- /app/news-feed/news-feed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/AngularJS-SocialNetwork/HEAD/app/news-feed/news-feed.html -------------------------------------------------------------------------------- /app/users/authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/AngularJS-SocialNetwork/HEAD/app/users/authentication.js -------------------------------------------------------------------------------- /app/users/identity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/AngularJS-SocialNetwork/HEAD/app/users/identity.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/AngularJS-SocialNetwork/HEAD/bower.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/AngularJS-SocialNetwork/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivaylokenov/AngularJS-SocialNetwork/HEAD/package.json --------------------------------------------------------------------------------