├── .gitignore ├── README.md ├── app ├── index.html ├── scripts │ ├── app.js │ ├── controllers │ │ ├── FirstTabCtrl.js │ │ ├── SecondTabCtrl.js │ │ └── ThirdTabCtrl.js │ └── directives │ │ └── tabset.js └── views │ ├── tab1.html │ ├── tab2.html │ └── tab3.html └── bower.json /.gitignore: -------------------------------------------------------------------------------- 1 | app/components 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebia/angularjs-tabs-and-lazy-data-loading/HEAD/README.md -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebia/angularjs-tabs-and-lazy-data-loading/HEAD/app/index.html -------------------------------------------------------------------------------- /app/scripts/app.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | var app = angular.module('myApp', ['bootstrap.tabset']); 4 | -------------------------------------------------------------------------------- /app/scripts/controllers/FirstTabCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebia/angularjs-tabs-and-lazy-data-loading/HEAD/app/scripts/controllers/FirstTabCtrl.js -------------------------------------------------------------------------------- /app/scripts/controllers/SecondTabCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebia/angularjs-tabs-and-lazy-data-loading/HEAD/app/scripts/controllers/SecondTabCtrl.js -------------------------------------------------------------------------------- /app/scripts/controllers/ThirdTabCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebia/angularjs-tabs-and-lazy-data-loading/HEAD/app/scripts/controllers/ThirdTabCtrl.js -------------------------------------------------------------------------------- /app/scripts/directives/tabset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebia/angularjs-tabs-and-lazy-data-loading/HEAD/app/scripts/directives/tabset.js -------------------------------------------------------------------------------- /app/views/tab1.html: -------------------------------------------------------------------------------- 1 |
2 |

{{ title }}

3 |
4 | -------------------------------------------------------------------------------- /app/views/tab2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebia/angularjs-tabs-and-lazy-data-loading/HEAD/app/views/tab2.html -------------------------------------------------------------------------------- /app/views/tab3.html: -------------------------------------------------------------------------------- 1 |
2 |

{{ title }}

3 |
4 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebia/angularjs-tabs-and-lazy-data-loading/HEAD/bower.json --------------------------------------------------------------------------------