├── README.md └── angularJs-uiRouter-RequireJsDemo ├── .idea ├── .name ├── eLinkDashboard1.0.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── app ├── business │ ├── home │ │ ├── config │ │ │ └── routerconfig.js │ │ ├── controllers │ │ │ ├── homeCtrl.js │ │ │ ├── httpTestCtrl.js │ │ │ ├── localCtrl.js │ │ │ ├── preViewCtrl.js │ │ │ ├── routertestCtrl.js │ │ │ ├── showDataCtrl.js │ │ │ └── testCtrl.js │ │ ├── partials │ │ │ ├── home.html │ │ │ ├── httpTest.html │ │ │ ├── local.html │ │ │ ├── preView.html │ │ │ ├── routertest.html │ │ │ ├── showData.html │ │ │ └── test.html │ │ └── services │ │ │ └── booksService.js │ └── services │ │ └── httpServices.js └── config │ ├── app.js │ ├── appregister.js │ ├── main.js │ ├── routerconfig.js │ └── routermodel.js ├── index.html ├── lib ├── angular-ui-router.js ├── angular.js ├── angular.min.js ├── angular.min2.js ├── bootstrap.js ├── domReady.js ├── jquery.media.js ├── jquery.min.js └── require.js └── them └── css └── bootstrap.css /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/README.md -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/.idea/.name: -------------------------------------------------------------------------------- 1 | eLinkDashboard1.0 -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/.idea/eLinkDashboard1.0.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/.idea/eLinkDashboard1.0.iml -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/.idea/misc.xml -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/.idea/modules.xml -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/.idea/vcs.xml -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/.idea/workspace.xml -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/app/business/home/config/routerconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/app/business/home/config/routerconfig.js -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/app/business/home/controllers/homeCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/app/business/home/controllers/homeCtrl.js -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/app/business/home/controllers/httpTestCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/app/business/home/controllers/httpTestCtrl.js -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/app/business/home/controllers/localCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/app/business/home/controllers/localCtrl.js -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/app/business/home/controllers/preViewCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/app/business/home/controllers/preViewCtrl.js -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/app/business/home/controllers/routertestCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/app/business/home/controllers/routertestCtrl.js -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/app/business/home/controllers/showDataCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/app/business/home/controllers/showDataCtrl.js -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/app/business/home/controllers/testCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/app/business/home/controllers/testCtrl.js -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/app/business/home/partials/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/app/business/home/partials/home.html -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/app/business/home/partials/httpTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/app/business/home/partials/httpTest.html -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/app/business/home/partials/local.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/app/business/home/partials/local.html -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/app/business/home/partials/preView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/app/business/home/partials/preView.html -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/app/business/home/partials/routertest.html: -------------------------------------------------------------------------------- 1 |
{{str}}
-------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/app/business/home/partials/showData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/app/business/home/partials/showData.html -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/app/business/home/partials/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/app/business/home/partials/test.html -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/app/business/home/services/booksService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/app/business/home/services/booksService.js -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/app/business/services/httpServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/app/business/services/httpServices.js -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/app/config/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/app/config/app.js -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/app/config/appregister.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/app/config/appregister.js -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/app/config/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/app/config/main.js -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/app/config/routerconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/app/config/routerconfig.js -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/app/config/routermodel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/app/config/routermodel.js -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/index.html -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/lib/angular-ui-router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/lib/angular-ui-router.js -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/lib/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/lib/angular.js -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/lib/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/lib/angular.min.js -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/lib/angular.min2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/lib/angular.min2.js -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/lib/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/lib/bootstrap.js -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/lib/domReady.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/lib/domReady.js -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/lib/jquery.media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/lib/jquery.media.js -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/lib/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/lib/jquery.min.js -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/lib/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/lib/require.js -------------------------------------------------------------------------------- /angularJs-uiRouter-RequireJsDemo/them/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangfan0095/angularJs-uiRouter-RequireJs/HEAD/angularJs-uiRouter-RequireJsDemo/them/css/bootstrap.css --------------------------------------------------------------------------------