├── .gitignore ├── Labs ├── Creating Application Factories-Services │ ├── End │ │ └── Readme.txt │ └── Files │ │ └── CustomerManager │ │ └── app │ │ └── customersApp │ │ ├── app.js │ │ └── services │ │ ├── authService.js │ │ ├── config.js │ │ ├── customersService.js │ │ └── dataService.js ├── Creating Custom Directives │ ├── End │ │ ├── Readme.txt │ │ └── index.html │ └── Files │ │ └── CustomerManager │ │ ├── app │ │ ├── customersApp │ │ │ ├── directives │ │ │ │ └── wcUnique.js │ │ │ └── views │ │ │ │ └── customers │ │ │ │ └── customerEdit.html │ │ └── wc.directives │ │ │ └── directives │ │ │ └── wcOverlay.js │ │ └── index.html ├── Creating a Module Factory Controller and View │ ├── Begin │ │ ├── app │ │ │ └── views │ │ │ │ ├── customers.html │ │ │ │ └── orders.html │ │ ├── index.html │ │ ├── js │ │ │ ├── angular-animate.js │ │ │ ├── angular-route.js │ │ │ └── angular.js │ │ ├── package.json │ │ ├── server.js │ │ ├── snippets.js │ │ └── styles │ │ │ └── animations.css │ └── End │ │ ├── app │ │ └── views │ │ │ ├── customers.html │ │ │ └── orders.html │ │ ├── index.html │ │ ├── package.json │ │ ├── server.js │ │ ├── snippets.js │ │ └── styles │ │ └── animations.css ├── Creating the CustomersController and View │ ├── End │ │ └── Readme.txt │ └── Files │ │ └── CustomerManager │ │ └── app │ │ └── customersApp │ │ ├── controllers │ │ └── customers │ │ │ └── customersController.js │ │ └── views │ │ └── customers │ │ └── customers.html ├── Creating the LoginController and View │ ├── End │ │ └── Readme.txt │ └── Files │ │ └── CustomerManager │ │ ├── Content │ │ └── styles.css │ │ └── app │ │ └── customersApp │ │ ├── controllers │ │ └── loginController.js │ │ └── views │ │ └── login.html ├── Creating the NavbarController and View │ ├── End │ │ └── Readme.txt │ └── Files │ │ └── CustomerManager │ │ ├── app │ │ └── customersApp │ │ │ └── controllers │ │ │ └── navbarController.js │ │ └── index.html ├── Defining Application Routes │ ├── End │ │ └── Readme.txt │ └── Files │ │ └── CustomerManager │ │ ├── app │ │ └── customersApp │ │ │ └── app.js │ │ └── index.html ├── Unit Testing AngularJS Components │ ├── Begin │ │ ├── app │ │ │ ├── app.js │ │ │ ├── css │ │ │ │ ├── .gitkeep │ │ │ │ └── app.css │ │ │ ├── lib │ │ │ │ ├── angular-animate.js │ │ │ │ ├── angular-mocks.js │ │ │ │ ├── angular-route.js │ │ │ │ ├── angular.js │ │ │ │ └── jasmine │ │ │ │ │ ├── MIT.LICENSE │ │ │ │ │ ├── boot.js │ │ │ │ │ ├── console.js │ │ │ │ │ ├── jasmine-html.js │ │ │ │ │ ├── jasmine.css │ │ │ │ │ ├── jasmine.js │ │ │ │ │ └── jasmine_favicon.png │ │ │ └── reminders.html │ │ ├── package.json │ │ ├── server.js │ │ └── test │ │ │ └── unit │ │ │ └── servicesSpec.js │ └── End │ │ ├── app │ │ ├── app.js │ │ ├── css │ │ │ └── app.css │ │ ├── lib │ │ │ ├── angular-animate.js │ │ │ ├── angular-mocks.js │ │ │ ├── angular-route.js │ │ │ ├── angular.js │ │ │ └── jasmine │ │ │ │ ├── MIT.LICENSE │ │ │ │ ├── boot.js │ │ │ │ ├── console.js │ │ │ │ ├── jasmine-html.js │ │ │ │ ├── jasmine.css │ │ │ │ ├── jasmine.js │ │ │ │ └── jasmine_favicon.png │ │ └── reminders.html │ │ ├── karma.conf.js │ │ ├── package.json │ │ ├── server.js │ │ └── test │ │ └── unit │ │ ├── controllersSpec.js │ │ └── servicesSpec.js └── Working with Controllers and Watches │ ├── Begin │ └── index.html │ └── End │ └── index.html ├── Samples ├── AngularJSStarterDemo │ ├── app │ │ └── views │ │ │ ├── customers.html │ │ │ └── orders.html │ ├── customers.json │ ├── index.html │ ├── js │ │ ├── angular-animate.js │ │ ├── angular-route.js │ │ └── angular.js │ ├── package.json │ ├── server.js │ ├── snippets.js │ └── styles │ │ └── animations.css ├── BroadcastAndEmit │ └── index.html ├── Directives │ ├── compile.html │ ├── component.html │ ├── controller.html │ ├── controllerAs.html │ ├── controllerNotUsed.html │ ├── controllerPassingParameter1.html │ ├── controllerPassingParameter2.html │ ├── customDirective.html │ ├── isolateScope.html │ ├── isolateScopeWithModel.html │ ├── isolateScopeWithModelAndElement.html │ ├── isolateScopeWithModelAndEvent.html │ ├── isolateScopeWithModelEventAndArray.html │ ├── isolateScopeWithString.html │ ├── js │ │ ├── compileDirective.js │ │ ├── component.js │ │ ├── controllerAsDirective.js │ │ ├── controllerDirective.js │ │ ├── controllerNotUsed.js │ │ ├── controllerPassingParameter1Directive.js │ │ ├── controllerPassingParameter2Directive.js │ │ ├── directivesController.js │ │ ├── isolateScopeDirective.js │ │ ├── isolateScopeWithModelAndElementDirective.js │ │ ├── isolateScopeWithModelAndEventDirective.js │ │ ├── isolateScopeWithModelDirective.js │ │ ├── isolateScopeWithModelEventAndArrayDirective.js │ │ ├── isolateScopeWithStringDirective.js │ │ ├── lazyLoadDirective.js │ │ ├── linkDirective.js │ │ ├── mapGeoLocationDirective.js │ │ ├── sharedScopeDirective.js │ │ ├── tableHelperControllerDirective.js │ │ ├── tableHelperDOMDirective.js │ │ ├── tableHelperDOMWithNgModelDirective.js │ │ ├── tableHelperDOMWithParseDirective.js │ │ └── transclusionDirective.js │ ├── lazyLoad.html │ ├── link.html │ ├── mapGeoLocation.html │ ├── sharedScope.html │ ├── tableHelperController.html │ ├── tableHelperDOM.html │ ├── tableHelperDOMWithParse.html │ ├── tableHelperDomWithNgModel.html │ └── transclusion.html ├── HybridSPADemo │ ├── .nuget │ │ ├── NuGet.Config │ │ ├── NuGet.exe │ │ └── NuGet.targets │ ├── HybridSPADemo.sln │ └── HybridSPADemo │ │ ├── App_Start │ │ └── RouteConfig.cs │ │ ├── Controllers │ │ └── ViewsController.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── HybridSPADemo.csproj │ │ ├── HybridSPADemo.csproj.user │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Scripts │ │ ├── jquery-1.10.2.intellisense.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.10.2.min.map │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── Views │ │ ├── Shared │ │ │ ├── _Layout.cshtml │ │ │ └── _ViewsLayout.cshtml │ │ ├── Views │ │ │ └── Orders.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── app │ │ └── views │ │ │ ├── customers.html │ │ │ └── orders.html │ │ ├── customers.txt │ │ ├── index.html │ │ ├── js │ │ ├── angular-animate.js │ │ ├── angular-route.js │ │ └── angular.js │ │ ├── packages.config │ │ └── styles │ │ └── animations.css ├── Pagination │ └── index.html ├── Routing │ ├── RoutingExample │ │ ├── Web.config │ │ ├── app │ │ │ ├── app.js │ │ │ ├── controllers │ │ │ │ ├── customersController.js │ │ │ │ └── ordersController.js │ │ │ ├── services │ │ │ │ ├── customersService.js │ │ │ │ └── ordersService.js │ │ │ └── views │ │ │ │ ├── customers.html │ │ │ │ └── orders.html │ │ ├── customers.json │ │ ├── index.html │ │ ├── orders.json │ │ ├── package.json │ │ ├── server.js │ │ ├── snippets.js │ │ └── styles │ │ │ └── animations.css │ └── ui-router │ │ ├── README.md │ │ ├── app.js │ │ ├── colors-list.html │ │ ├── customer-details.html │ │ ├── customers.html │ │ ├── home.html │ │ ├── index.html │ │ ├── package.json │ │ └── server.js ├── Scopes │ └── index.html ├── UnitTesting │ ├── app │ │ ├── app.js │ │ ├── css │ │ │ ├── .gitkeep │ │ │ └── app.css │ │ ├── lib │ │ │ ├── angular-animate.js │ │ │ ├── angular-mocks.js │ │ │ ├── angular-route.js │ │ │ ├── angular.js │ │ │ └── jasmine │ │ │ │ ├── MIT.LICENSE │ │ │ │ ├── boot.js │ │ │ │ ├── console.js │ │ │ │ ├── jasmine-html.js │ │ │ │ ├── jasmine.css │ │ │ │ ├── jasmine.js │ │ │ │ └── jasmine_favicon.png │ │ └── reminders.html │ ├── package.json │ ├── server.js │ └── test │ │ ├── karma.conf.js │ │ └── unit │ │ ├── controllersSpec.js │ │ ├── directivesSpec.js │ │ ├── filtersSpec.js │ │ └── servicesSpec.js └── Watches │ └── index.html ├── Src ├── .nuget │ ├── NuGet.Config │ ├── NuGet.exe │ └── NuGet.targets ├── .vs │ └── config │ │ └── applicationhost.config ├── CustomerManager.sln ├── CustomerManager │ ├── App_Start │ │ ├── BreezeWebApiConfig.cs │ │ └── WebApiConfig.cs │ ├── Content │ │ ├── animations.css │ │ ├── bootstrap.css │ │ ├── bootstrap.icon-large.min.css │ │ ├── images │ │ │ ├── ColorPalette.png │ │ │ ├── CourseLogoYellow.png │ │ │ ├── angularShield.png │ │ │ ├── appFolders.png │ │ │ ├── customerApp.png │ │ │ ├── favicon.ico │ │ │ ├── female.png │ │ │ ├── male.png │ │ │ ├── people.png │ │ │ ├── report.png │ │ │ └── spinner.gif │ │ └── styles.css │ ├── Controllers │ │ ├── BreezeDataServiceController.cs │ │ └── DataServiceController.cs │ ├── CustomerManager.csproj │ ├── CustomerManager.csproj.user │ ├── Global.asax │ ├── Global.asax.cs │ ├── Model │ │ ├── Customer.cs │ │ ├── CustomerSummary.cs │ │ ├── OperationStatus.cs │ │ ├── Order.cs │ │ ├── State.cs │ │ └── UserLogin.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Repository │ │ ├── CustomerManagerContext.cs │ │ ├── CustomerManagerDatabaseInitializer.cs │ │ ├── CustomerRepository.cs │ │ └── DataInitializer.cs │ ├── Scripts │ │ ├── angular-ui-bootstrap.js │ │ ├── breeze.angular.js │ │ ├── breeze.debug.js │ │ ├── breeze.min.js │ │ └── tweenMax.min.js │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── app │ │ ├── customersApp │ │ │ ├── animations │ │ │ │ └── listAnimations.js │ │ │ ├── app.js │ │ │ ├── controllers │ │ │ │ ├── aboutController.js │ │ │ │ ├── customers │ │ │ │ │ ├── customerEditController.js │ │ │ │ │ ├── customerOrdersController.js │ │ │ │ │ └── customersController.js │ │ │ │ ├── loginController.js │ │ │ │ ├── navbarController.js │ │ │ │ └── orders │ │ │ │ │ ├── orderChildController.js │ │ │ │ │ └── ordersController.js │ │ │ ├── directives │ │ │ │ ├── lazyLoader.js │ │ │ │ └── wcUnique.js │ │ │ ├── filters │ │ │ │ ├── nameCityStateFilter.js │ │ │ │ └── nameProductFilter.js │ │ │ ├── partials │ │ │ │ └── modal.html │ │ │ ├── services │ │ │ │ ├── authService.js │ │ │ │ ├── config.js │ │ │ │ ├── customersBreezeService.js │ │ │ │ ├── customersService.js │ │ │ │ ├── dataService.js │ │ │ │ ├── httpInterceptors.js │ │ │ │ └── modalService.js │ │ │ └── views │ │ │ │ ├── about.html │ │ │ │ ├── customers │ │ │ │ ├── customerEdit.html │ │ │ │ ├── customerOrders.html │ │ │ │ └── customers.html │ │ │ │ ├── login.html │ │ │ │ └── orders │ │ │ │ ├── orders.html │ │ │ │ └── ordersTable.html │ │ └── wc.directives │ │ │ └── directives │ │ │ ├── lazyLoader.js │ │ │ ├── menuHighlighter.js │ │ │ └── wcOverlay.js │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── gulpfile.js │ ├── index.html │ ├── package.json │ ├── packages.config │ ├── server │ │ ├── accessDB.js │ │ ├── initMongoDB.bat │ │ ├── initMongoDB.sh │ │ ├── initMongoData.js │ │ ├── lib │ │ │ └── protectJSON.js │ │ ├── models │ │ │ ├── customer.js │ │ │ └── state.js │ │ ├── routes │ │ │ ├── api.js │ │ │ └── index.js │ │ ├── server.js │ │ └── views │ │ │ └── index.jade │ └── test │ │ ├── helpers │ │ └── serviceFactories.js │ │ ├── karma.conf.js │ │ ├── lib │ │ ├── angular-animate.js │ │ ├── angular-mocks.js │ │ ├── angular-route.js │ │ ├── angular.js │ │ ├── breeze.angular.js │ │ └── breeze.min.js │ │ └── unit │ │ ├── customersControllerSpec.js │ │ ├── customersServiceSpec.js │ │ ├── dataServiceSpec.js │ │ ├── modalServiceSpec.js │ │ ├── wcOverlaySpec.js │ │ └── wcUniqueSpec.js ├── LICENSE.txt └── readme.md ├── copyFolders.js ├── package.json └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/.gitignore -------------------------------------------------------------------------------- /Labs/Creating Application Factories-Services/End/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Creating Application Factories-Services/End/Readme.txt -------------------------------------------------------------------------------- /Labs/Creating Application Factories-Services/Files/CustomerManager/app/customersApp/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Labs/Creating Application Factories-Services/Files/CustomerManager/app/customersApp/services/authService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Creating Application Factories-Services/Files/CustomerManager/app/customersApp/services/authService.js -------------------------------------------------------------------------------- /Labs/Creating Application Factories-Services/Files/CustomerManager/app/customersApp/services/config.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Labs/Creating Application Factories-Services/Files/CustomerManager/app/customersApp/services/customersService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Creating Application Factories-Services/Files/CustomerManager/app/customersApp/services/customersService.js -------------------------------------------------------------------------------- /Labs/Creating Application Factories-Services/Files/CustomerManager/app/customersApp/services/dataService.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Labs/Creating Custom Directives/End/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Creating Custom Directives/End/Readme.txt -------------------------------------------------------------------------------- /Labs/Creating Custom Directives/End/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Creating Custom Directives/End/index.html -------------------------------------------------------------------------------- /Labs/Creating Custom Directives/Files/CustomerManager/app/customersApp/directives/wcUnique.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Labs/Creating Custom Directives/Files/CustomerManager/app/customersApp/views/customers/customerEdit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Creating Custom Directives/Files/CustomerManager/app/customersApp/views/customers/customerEdit.html -------------------------------------------------------------------------------- /Labs/Creating Custom Directives/Files/CustomerManager/app/wc.directives/directives/wcOverlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Creating Custom Directives/Files/CustomerManager/app/wc.directives/directives/wcOverlay.js -------------------------------------------------------------------------------- /Labs/Creating Custom Directives/Files/CustomerManager/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Creating Custom Directives/Files/CustomerManager/index.html -------------------------------------------------------------------------------- /Labs/Creating a Module Factory Controller and View/Begin/app/views/customers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Creating a Module Factory Controller and View/Begin/app/views/customers.html -------------------------------------------------------------------------------- /Labs/Creating a Module Factory Controller and View/Begin/app/views/orders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Creating a Module Factory Controller and View/Begin/app/views/orders.html -------------------------------------------------------------------------------- /Labs/Creating a Module Factory Controller and View/Begin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Creating a Module Factory Controller and View/Begin/index.html -------------------------------------------------------------------------------- /Labs/Creating a Module Factory Controller and View/Begin/js/angular-animate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Creating a Module Factory Controller and View/Begin/js/angular-animate.js -------------------------------------------------------------------------------- /Labs/Creating a Module Factory Controller and View/Begin/js/angular-route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Creating a Module Factory Controller and View/Begin/js/angular-route.js -------------------------------------------------------------------------------- /Labs/Creating a Module Factory Controller and View/Begin/js/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Creating a Module Factory Controller and View/Begin/js/angular.js -------------------------------------------------------------------------------- /Labs/Creating a Module Factory Controller and View/Begin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Creating a Module Factory Controller and View/Begin/package.json -------------------------------------------------------------------------------- /Labs/Creating a Module Factory Controller and View/Begin/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Creating a Module Factory Controller and View/Begin/server.js -------------------------------------------------------------------------------- /Labs/Creating a Module Factory Controller and View/Begin/snippets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Creating a Module Factory Controller and View/Begin/snippets.js -------------------------------------------------------------------------------- /Labs/Creating a Module Factory Controller and View/Begin/styles/animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Creating a Module Factory Controller and View/Begin/styles/animations.css -------------------------------------------------------------------------------- /Labs/Creating a Module Factory Controller and View/End/app/views/customers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Creating a Module Factory Controller and View/End/app/views/customers.html -------------------------------------------------------------------------------- /Labs/Creating a Module Factory Controller and View/End/app/views/orders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Creating a Module Factory Controller and View/End/app/views/orders.html -------------------------------------------------------------------------------- /Labs/Creating a Module Factory Controller and View/End/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Creating a Module Factory Controller and View/End/index.html -------------------------------------------------------------------------------- /Labs/Creating a Module Factory Controller and View/End/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Creating a Module Factory Controller and View/End/package.json -------------------------------------------------------------------------------- /Labs/Creating a Module Factory Controller and View/End/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Creating a Module Factory Controller and View/End/server.js -------------------------------------------------------------------------------- /Labs/Creating a Module Factory Controller and View/End/snippets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Creating a Module Factory Controller and View/End/snippets.js -------------------------------------------------------------------------------- /Labs/Creating a Module Factory Controller and View/End/styles/animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Creating a Module Factory Controller and View/End/styles/animations.css -------------------------------------------------------------------------------- /Labs/Creating the CustomersController and View/End/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Creating the CustomersController and View/End/Readme.txt -------------------------------------------------------------------------------- /Labs/Creating the CustomersController and View/Files/CustomerManager/app/customersApp/controllers/customers/customersController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Creating the CustomersController and View/Files/CustomerManager/app/customersApp/controllers/customers/customersController.js -------------------------------------------------------------------------------- /Labs/Creating the CustomersController and View/Files/CustomerManager/app/customersApp/views/customers/customers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Creating the CustomersController and View/Files/CustomerManager/app/customersApp/views/customers/customers.html -------------------------------------------------------------------------------- /Labs/Creating the LoginController and View/End/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Creating the LoginController and View/End/Readme.txt -------------------------------------------------------------------------------- /Labs/Creating the LoginController and View/Files/CustomerManager/Content/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Creating the LoginController and View/Files/CustomerManager/Content/styles.css -------------------------------------------------------------------------------- /Labs/Creating the LoginController and View/Files/CustomerManager/app/customersApp/controllers/loginController.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Labs/Creating the LoginController and View/Files/CustomerManager/app/customersApp/views/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Creating the LoginController and View/Files/CustomerManager/app/customersApp/views/login.html -------------------------------------------------------------------------------- /Labs/Creating the NavbarController and View/End/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Creating the NavbarController and View/End/Readme.txt -------------------------------------------------------------------------------- /Labs/Creating the NavbarController and View/Files/CustomerManager/app/customersApp/controllers/navbarController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Creating the NavbarController and View/Files/CustomerManager/app/customersApp/controllers/navbarController.js -------------------------------------------------------------------------------- /Labs/Creating the NavbarController and View/Files/CustomerManager/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Creating the NavbarController and View/Files/CustomerManager/index.html -------------------------------------------------------------------------------- /Labs/Defining Application Routes/End/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Defining Application Routes/End/Readme.txt -------------------------------------------------------------------------------- /Labs/Defining Application Routes/Files/CustomerManager/app/customersApp/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Defining Application Routes/Files/CustomerManager/app/customersApp/app.js -------------------------------------------------------------------------------- /Labs/Defining Application Routes/Files/CustomerManager/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Defining Application Routes/Files/CustomerManager/index.html -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/Begin/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/Begin/app/app.js -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/Begin/app/css/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/Begin/app/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/Begin/app/css/app.css -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/Begin/app/lib/angular-animate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/Begin/app/lib/angular-animate.js -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/Begin/app/lib/angular-mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/Begin/app/lib/angular-mocks.js -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/Begin/app/lib/angular-route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/Begin/app/lib/angular-route.js -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/Begin/app/lib/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/Begin/app/lib/angular.js -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/Begin/app/lib/jasmine/MIT.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/Begin/app/lib/jasmine/MIT.LICENSE -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/Begin/app/lib/jasmine/boot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/Begin/app/lib/jasmine/boot.js -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/Begin/app/lib/jasmine/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/Begin/app/lib/jasmine/console.js -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/Begin/app/lib/jasmine/jasmine-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/Begin/app/lib/jasmine/jasmine-html.js -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/Begin/app/lib/jasmine/jasmine.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/Begin/app/lib/jasmine/jasmine.css -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/Begin/app/lib/jasmine/jasmine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/Begin/app/lib/jasmine/jasmine.js -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/Begin/app/lib/jasmine/jasmine_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/Begin/app/lib/jasmine/jasmine_favicon.png -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/Begin/app/reminders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/Begin/app/reminders.html -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/Begin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/Begin/package.json -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/Begin/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/Begin/server.js -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/Begin/test/unit/servicesSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/Begin/test/unit/servicesSpec.js -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/End/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/End/app/app.js -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/End/app/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/End/app/css/app.css -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/End/app/lib/angular-animate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/End/app/lib/angular-animate.js -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/End/app/lib/angular-mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/End/app/lib/angular-mocks.js -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/End/app/lib/angular-route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/End/app/lib/angular-route.js -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/End/app/lib/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/End/app/lib/angular.js -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/End/app/lib/jasmine/MIT.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/End/app/lib/jasmine/MIT.LICENSE -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/End/app/lib/jasmine/boot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/End/app/lib/jasmine/boot.js -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/End/app/lib/jasmine/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/End/app/lib/jasmine/console.js -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/End/app/lib/jasmine/jasmine-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/End/app/lib/jasmine/jasmine-html.js -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/End/app/lib/jasmine/jasmine.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/End/app/lib/jasmine/jasmine.css -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/End/app/lib/jasmine/jasmine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/End/app/lib/jasmine/jasmine.js -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/End/app/lib/jasmine/jasmine_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/End/app/lib/jasmine/jasmine_favicon.png -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/End/app/reminders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/End/app/reminders.html -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/End/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/End/karma.conf.js -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/End/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/End/package.json -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/End/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/End/server.js -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/End/test/unit/controllersSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/End/test/unit/controllersSpec.js -------------------------------------------------------------------------------- /Labs/Unit Testing AngularJS Components/End/test/unit/servicesSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Unit Testing AngularJS Components/End/test/unit/servicesSpec.js -------------------------------------------------------------------------------- /Labs/Working with Controllers and Watches/Begin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Working with Controllers and Watches/Begin/index.html -------------------------------------------------------------------------------- /Labs/Working with Controllers and Watches/End/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Labs/Working with Controllers and Watches/End/index.html -------------------------------------------------------------------------------- /Samples/AngularJSStarterDemo/app/views/customers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/AngularJSStarterDemo/app/views/customers.html -------------------------------------------------------------------------------- /Samples/AngularJSStarterDemo/app/views/orders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/AngularJSStarterDemo/app/views/orders.html -------------------------------------------------------------------------------- /Samples/AngularJSStarterDemo/customers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/AngularJSStarterDemo/customers.json -------------------------------------------------------------------------------- /Samples/AngularJSStarterDemo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/AngularJSStarterDemo/index.html -------------------------------------------------------------------------------- /Samples/AngularJSStarterDemo/js/angular-animate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/AngularJSStarterDemo/js/angular-animate.js -------------------------------------------------------------------------------- /Samples/AngularJSStarterDemo/js/angular-route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/AngularJSStarterDemo/js/angular-route.js -------------------------------------------------------------------------------- /Samples/AngularJSStarterDemo/js/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/AngularJSStarterDemo/js/angular.js -------------------------------------------------------------------------------- /Samples/AngularJSStarterDemo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/AngularJSStarterDemo/package.json -------------------------------------------------------------------------------- /Samples/AngularJSStarterDemo/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/AngularJSStarterDemo/server.js -------------------------------------------------------------------------------- /Samples/AngularJSStarterDemo/snippets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/AngularJSStarterDemo/snippets.js -------------------------------------------------------------------------------- /Samples/AngularJSStarterDemo/styles/animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/AngularJSStarterDemo/styles/animations.css -------------------------------------------------------------------------------- /Samples/BroadcastAndEmit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/BroadcastAndEmit/index.html -------------------------------------------------------------------------------- /Samples/Directives/compile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/compile.html -------------------------------------------------------------------------------- /Samples/Directives/component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/component.html -------------------------------------------------------------------------------- /Samples/Directives/controller.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/controller.html -------------------------------------------------------------------------------- /Samples/Directives/controllerAs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/controllerAs.html -------------------------------------------------------------------------------- /Samples/Directives/controllerNotUsed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/controllerNotUsed.html -------------------------------------------------------------------------------- /Samples/Directives/controllerPassingParameter1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/controllerPassingParameter1.html -------------------------------------------------------------------------------- /Samples/Directives/controllerPassingParameter2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/controllerPassingParameter2.html -------------------------------------------------------------------------------- /Samples/Directives/customDirective.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/customDirective.html -------------------------------------------------------------------------------- /Samples/Directives/isolateScope.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/isolateScope.html -------------------------------------------------------------------------------- /Samples/Directives/isolateScopeWithModel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/isolateScopeWithModel.html -------------------------------------------------------------------------------- /Samples/Directives/isolateScopeWithModelAndElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/isolateScopeWithModelAndElement.html -------------------------------------------------------------------------------- /Samples/Directives/isolateScopeWithModelAndEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/isolateScopeWithModelAndEvent.html -------------------------------------------------------------------------------- /Samples/Directives/isolateScopeWithModelEventAndArray.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/isolateScopeWithModelEventAndArray.html -------------------------------------------------------------------------------- /Samples/Directives/isolateScopeWithString.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/isolateScopeWithString.html -------------------------------------------------------------------------------- /Samples/Directives/js/compileDirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/js/compileDirective.js -------------------------------------------------------------------------------- /Samples/Directives/js/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/js/component.js -------------------------------------------------------------------------------- /Samples/Directives/js/controllerAsDirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/js/controllerAsDirective.js -------------------------------------------------------------------------------- /Samples/Directives/js/controllerDirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/js/controllerDirective.js -------------------------------------------------------------------------------- /Samples/Directives/js/controllerNotUsed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/js/controllerNotUsed.js -------------------------------------------------------------------------------- /Samples/Directives/js/controllerPassingParameter1Directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/js/controllerPassingParameter1Directive.js -------------------------------------------------------------------------------- /Samples/Directives/js/controllerPassingParameter2Directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/js/controllerPassingParameter2Directive.js -------------------------------------------------------------------------------- /Samples/Directives/js/directivesController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/js/directivesController.js -------------------------------------------------------------------------------- /Samples/Directives/js/isolateScopeDirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/js/isolateScopeDirective.js -------------------------------------------------------------------------------- /Samples/Directives/js/isolateScopeWithModelAndElementDirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/js/isolateScopeWithModelAndElementDirective.js -------------------------------------------------------------------------------- /Samples/Directives/js/isolateScopeWithModelAndEventDirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/js/isolateScopeWithModelAndEventDirective.js -------------------------------------------------------------------------------- /Samples/Directives/js/isolateScopeWithModelDirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/js/isolateScopeWithModelDirective.js -------------------------------------------------------------------------------- /Samples/Directives/js/isolateScopeWithModelEventAndArrayDirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/js/isolateScopeWithModelEventAndArrayDirective.js -------------------------------------------------------------------------------- /Samples/Directives/js/isolateScopeWithStringDirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/js/isolateScopeWithStringDirective.js -------------------------------------------------------------------------------- /Samples/Directives/js/lazyLoadDirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/js/lazyLoadDirective.js -------------------------------------------------------------------------------- /Samples/Directives/js/linkDirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/js/linkDirective.js -------------------------------------------------------------------------------- /Samples/Directives/js/mapGeoLocationDirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/js/mapGeoLocationDirective.js -------------------------------------------------------------------------------- /Samples/Directives/js/sharedScopeDirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/js/sharedScopeDirective.js -------------------------------------------------------------------------------- /Samples/Directives/js/tableHelperControllerDirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/js/tableHelperControllerDirective.js -------------------------------------------------------------------------------- /Samples/Directives/js/tableHelperDOMDirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/js/tableHelperDOMDirective.js -------------------------------------------------------------------------------- /Samples/Directives/js/tableHelperDOMWithNgModelDirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/js/tableHelperDOMWithNgModelDirective.js -------------------------------------------------------------------------------- /Samples/Directives/js/tableHelperDOMWithParseDirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/js/tableHelperDOMWithParseDirective.js -------------------------------------------------------------------------------- /Samples/Directives/js/transclusionDirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/js/transclusionDirective.js -------------------------------------------------------------------------------- /Samples/Directives/lazyLoad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/lazyLoad.html -------------------------------------------------------------------------------- /Samples/Directives/link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/link.html -------------------------------------------------------------------------------- /Samples/Directives/mapGeoLocation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/mapGeoLocation.html -------------------------------------------------------------------------------- /Samples/Directives/sharedScope.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/sharedScope.html -------------------------------------------------------------------------------- /Samples/Directives/tableHelperController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/tableHelperController.html -------------------------------------------------------------------------------- /Samples/Directives/tableHelperDOM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/tableHelperDOM.html -------------------------------------------------------------------------------- /Samples/Directives/tableHelperDOMWithParse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/tableHelperDOMWithParse.html -------------------------------------------------------------------------------- /Samples/Directives/tableHelperDomWithNgModel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/tableHelperDomWithNgModel.html -------------------------------------------------------------------------------- /Samples/Directives/transclusion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Directives/transclusion.html -------------------------------------------------------------------------------- /Samples/HybridSPADemo/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/.nuget/NuGet.Config -------------------------------------------------------------------------------- /Samples/HybridSPADemo/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/.nuget/NuGet.exe -------------------------------------------------------------------------------- /Samples/HybridSPADemo/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/.nuget/NuGet.targets -------------------------------------------------------------------------------- /Samples/HybridSPADemo/HybridSPADemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/HybridSPADemo.sln -------------------------------------------------------------------------------- /Samples/HybridSPADemo/HybridSPADemo/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/HybridSPADemo/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /Samples/HybridSPADemo/HybridSPADemo/Controllers/ViewsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/HybridSPADemo/Controllers/ViewsController.cs -------------------------------------------------------------------------------- /Samples/HybridSPADemo/HybridSPADemo/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/HybridSPADemo/Global.asax -------------------------------------------------------------------------------- /Samples/HybridSPADemo/HybridSPADemo/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/HybridSPADemo/Global.asax.cs -------------------------------------------------------------------------------- /Samples/HybridSPADemo/HybridSPADemo/HybridSPADemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/HybridSPADemo/HybridSPADemo.csproj -------------------------------------------------------------------------------- /Samples/HybridSPADemo/HybridSPADemo/HybridSPADemo.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/HybridSPADemo/HybridSPADemo.csproj.user -------------------------------------------------------------------------------- /Samples/HybridSPADemo/HybridSPADemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/HybridSPADemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/HybridSPADemo/HybridSPADemo/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/HybridSPADemo/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /Samples/HybridSPADemo/HybridSPADemo/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/HybridSPADemo/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /Samples/HybridSPADemo/HybridSPADemo/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/HybridSPADemo/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /Samples/HybridSPADemo/HybridSPADemo/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/HybridSPADemo/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /Samples/HybridSPADemo/HybridSPADemo/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/HybridSPADemo/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /Samples/HybridSPADemo/HybridSPADemo/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/HybridSPADemo/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /Samples/HybridSPADemo/HybridSPADemo/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/HybridSPADemo/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /Samples/HybridSPADemo/HybridSPADemo/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/HybridSPADemo/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /Samples/HybridSPADemo/HybridSPADemo/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/HybridSPADemo/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /Samples/HybridSPADemo/HybridSPADemo/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/HybridSPADemo/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Samples/HybridSPADemo/HybridSPADemo/Views/Shared/_ViewsLayout.cshtml: -------------------------------------------------------------------------------- 1 | @RenderBody() -------------------------------------------------------------------------------- /Samples/HybridSPADemo/HybridSPADemo/Views/Views/Orders.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/HybridSPADemo/Views/Views/Orders.cshtml -------------------------------------------------------------------------------- /Samples/HybridSPADemo/HybridSPADemo/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/HybridSPADemo/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Samples/HybridSPADemo/HybridSPADemo/Views/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/HybridSPADemo/Views/web.config -------------------------------------------------------------------------------- /Samples/HybridSPADemo/HybridSPADemo/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/HybridSPADemo/Web.Debug.config -------------------------------------------------------------------------------- /Samples/HybridSPADemo/HybridSPADemo/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/HybridSPADemo/Web.Release.config -------------------------------------------------------------------------------- /Samples/HybridSPADemo/HybridSPADemo/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/HybridSPADemo/Web.config -------------------------------------------------------------------------------- /Samples/HybridSPADemo/HybridSPADemo/app/views/customers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/HybridSPADemo/app/views/customers.html -------------------------------------------------------------------------------- /Samples/HybridSPADemo/HybridSPADemo/app/views/orders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/HybridSPADemo/app/views/orders.html -------------------------------------------------------------------------------- /Samples/HybridSPADemo/HybridSPADemo/customers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/HybridSPADemo/customers.txt -------------------------------------------------------------------------------- /Samples/HybridSPADemo/HybridSPADemo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/HybridSPADemo/index.html -------------------------------------------------------------------------------- /Samples/HybridSPADemo/HybridSPADemo/js/angular-animate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/HybridSPADemo/js/angular-animate.js -------------------------------------------------------------------------------- /Samples/HybridSPADemo/HybridSPADemo/js/angular-route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/HybridSPADemo/js/angular-route.js -------------------------------------------------------------------------------- /Samples/HybridSPADemo/HybridSPADemo/js/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/HybridSPADemo/js/angular.js -------------------------------------------------------------------------------- /Samples/HybridSPADemo/HybridSPADemo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/HybridSPADemo/packages.config -------------------------------------------------------------------------------- /Samples/HybridSPADemo/HybridSPADemo/styles/animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/HybridSPADemo/HybridSPADemo/styles/animations.css -------------------------------------------------------------------------------- /Samples/Pagination/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Pagination/index.html -------------------------------------------------------------------------------- /Samples/Routing/RoutingExample/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Routing/RoutingExample/Web.config -------------------------------------------------------------------------------- /Samples/Routing/RoutingExample/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Routing/RoutingExample/app/app.js -------------------------------------------------------------------------------- /Samples/Routing/RoutingExample/app/controllers/customersController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Routing/RoutingExample/app/controllers/customersController.js -------------------------------------------------------------------------------- /Samples/Routing/RoutingExample/app/controllers/ordersController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Routing/RoutingExample/app/controllers/ordersController.js -------------------------------------------------------------------------------- /Samples/Routing/RoutingExample/app/services/customersService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Routing/RoutingExample/app/services/customersService.js -------------------------------------------------------------------------------- /Samples/Routing/RoutingExample/app/services/ordersService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Routing/RoutingExample/app/services/ordersService.js -------------------------------------------------------------------------------- /Samples/Routing/RoutingExample/app/views/customers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Routing/RoutingExample/app/views/customers.html -------------------------------------------------------------------------------- /Samples/Routing/RoutingExample/app/views/orders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Routing/RoutingExample/app/views/orders.html -------------------------------------------------------------------------------- /Samples/Routing/RoutingExample/customers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Routing/RoutingExample/customers.json -------------------------------------------------------------------------------- /Samples/Routing/RoutingExample/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Routing/RoutingExample/index.html -------------------------------------------------------------------------------- /Samples/Routing/RoutingExample/orders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Routing/RoutingExample/orders.json -------------------------------------------------------------------------------- /Samples/Routing/RoutingExample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Routing/RoutingExample/package.json -------------------------------------------------------------------------------- /Samples/Routing/RoutingExample/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Routing/RoutingExample/server.js -------------------------------------------------------------------------------- /Samples/Routing/RoutingExample/snippets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Routing/RoutingExample/snippets.js -------------------------------------------------------------------------------- /Samples/Routing/RoutingExample/styles/animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Routing/RoutingExample/styles/animations.css -------------------------------------------------------------------------------- /Samples/Routing/ui-router/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Routing/ui-router/README.md -------------------------------------------------------------------------------- /Samples/Routing/ui-router/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Routing/ui-router/app.js -------------------------------------------------------------------------------- /Samples/Routing/ui-router/colors-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Routing/ui-router/colors-list.html -------------------------------------------------------------------------------- /Samples/Routing/ui-router/customer-details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Routing/ui-router/customer-details.html -------------------------------------------------------------------------------- /Samples/Routing/ui-router/customers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Routing/ui-router/customers.html -------------------------------------------------------------------------------- /Samples/Routing/ui-router/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Routing/ui-router/home.html -------------------------------------------------------------------------------- /Samples/Routing/ui-router/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Routing/ui-router/index.html -------------------------------------------------------------------------------- /Samples/Routing/ui-router/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Routing/ui-router/package.json -------------------------------------------------------------------------------- /Samples/Routing/ui-router/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Routing/ui-router/server.js -------------------------------------------------------------------------------- /Samples/Scopes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Scopes/index.html -------------------------------------------------------------------------------- /Samples/UnitTesting/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/UnitTesting/app/app.js -------------------------------------------------------------------------------- /Samples/UnitTesting/app/css/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Samples/UnitTesting/app/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/UnitTesting/app/css/app.css -------------------------------------------------------------------------------- /Samples/UnitTesting/app/lib/angular-animate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/UnitTesting/app/lib/angular-animate.js -------------------------------------------------------------------------------- /Samples/UnitTesting/app/lib/angular-mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/UnitTesting/app/lib/angular-mocks.js -------------------------------------------------------------------------------- /Samples/UnitTesting/app/lib/angular-route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/UnitTesting/app/lib/angular-route.js -------------------------------------------------------------------------------- /Samples/UnitTesting/app/lib/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/UnitTesting/app/lib/angular.js -------------------------------------------------------------------------------- /Samples/UnitTesting/app/lib/jasmine/MIT.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/UnitTesting/app/lib/jasmine/MIT.LICENSE -------------------------------------------------------------------------------- /Samples/UnitTesting/app/lib/jasmine/boot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/UnitTesting/app/lib/jasmine/boot.js -------------------------------------------------------------------------------- /Samples/UnitTesting/app/lib/jasmine/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/UnitTesting/app/lib/jasmine/console.js -------------------------------------------------------------------------------- /Samples/UnitTesting/app/lib/jasmine/jasmine-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/UnitTesting/app/lib/jasmine/jasmine-html.js -------------------------------------------------------------------------------- /Samples/UnitTesting/app/lib/jasmine/jasmine.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/UnitTesting/app/lib/jasmine/jasmine.css -------------------------------------------------------------------------------- /Samples/UnitTesting/app/lib/jasmine/jasmine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/UnitTesting/app/lib/jasmine/jasmine.js -------------------------------------------------------------------------------- /Samples/UnitTesting/app/lib/jasmine/jasmine_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/UnitTesting/app/lib/jasmine/jasmine_favicon.png -------------------------------------------------------------------------------- /Samples/UnitTesting/app/reminders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/UnitTesting/app/reminders.html -------------------------------------------------------------------------------- /Samples/UnitTesting/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/UnitTesting/package.json -------------------------------------------------------------------------------- /Samples/UnitTesting/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/UnitTesting/server.js -------------------------------------------------------------------------------- /Samples/UnitTesting/test/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/UnitTesting/test/karma.conf.js -------------------------------------------------------------------------------- /Samples/UnitTesting/test/unit/controllersSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/UnitTesting/test/unit/controllersSpec.js -------------------------------------------------------------------------------- /Samples/UnitTesting/test/unit/directivesSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/UnitTesting/test/unit/directivesSpec.js -------------------------------------------------------------------------------- /Samples/UnitTesting/test/unit/filtersSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/UnitTesting/test/unit/filtersSpec.js -------------------------------------------------------------------------------- /Samples/UnitTesting/test/unit/servicesSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/UnitTesting/test/unit/servicesSpec.js -------------------------------------------------------------------------------- /Samples/Watches/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Samples/Watches/index.html -------------------------------------------------------------------------------- /Src/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/.nuget/NuGet.Config -------------------------------------------------------------------------------- /Src/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/.nuget/NuGet.exe -------------------------------------------------------------------------------- /Src/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/.nuget/NuGet.targets -------------------------------------------------------------------------------- /Src/.vs/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/.vs/config/applicationhost.config -------------------------------------------------------------------------------- /Src/CustomerManager.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager.sln -------------------------------------------------------------------------------- /Src/CustomerManager/App_Start/BreezeWebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/App_Start/BreezeWebApiConfig.cs -------------------------------------------------------------------------------- /Src/CustomerManager/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /Src/CustomerManager/Content/animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Content/animations.css -------------------------------------------------------------------------------- /Src/CustomerManager/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Content/bootstrap.css -------------------------------------------------------------------------------- /Src/CustomerManager/Content/bootstrap.icon-large.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Content/bootstrap.icon-large.min.css -------------------------------------------------------------------------------- /Src/CustomerManager/Content/images/ColorPalette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Content/images/ColorPalette.png -------------------------------------------------------------------------------- /Src/CustomerManager/Content/images/CourseLogoYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Content/images/CourseLogoYellow.png -------------------------------------------------------------------------------- /Src/CustomerManager/Content/images/angularShield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Content/images/angularShield.png -------------------------------------------------------------------------------- /Src/CustomerManager/Content/images/appFolders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Content/images/appFolders.png -------------------------------------------------------------------------------- /Src/CustomerManager/Content/images/customerApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Content/images/customerApp.png -------------------------------------------------------------------------------- /Src/CustomerManager/Content/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Content/images/favicon.ico -------------------------------------------------------------------------------- /Src/CustomerManager/Content/images/female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Content/images/female.png -------------------------------------------------------------------------------- /Src/CustomerManager/Content/images/male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Content/images/male.png -------------------------------------------------------------------------------- /Src/CustomerManager/Content/images/people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Content/images/people.png -------------------------------------------------------------------------------- /Src/CustomerManager/Content/images/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Content/images/report.png -------------------------------------------------------------------------------- /Src/CustomerManager/Content/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Content/images/spinner.gif -------------------------------------------------------------------------------- /Src/CustomerManager/Content/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Content/styles.css -------------------------------------------------------------------------------- /Src/CustomerManager/Controllers/BreezeDataServiceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Controllers/BreezeDataServiceController.cs -------------------------------------------------------------------------------- /Src/CustomerManager/Controllers/DataServiceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Controllers/DataServiceController.cs -------------------------------------------------------------------------------- /Src/CustomerManager/CustomerManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/CustomerManager.csproj -------------------------------------------------------------------------------- /Src/CustomerManager/CustomerManager.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/CustomerManager.csproj.user -------------------------------------------------------------------------------- /Src/CustomerManager/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Global.asax -------------------------------------------------------------------------------- /Src/CustomerManager/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Global.asax.cs -------------------------------------------------------------------------------- /Src/CustomerManager/Model/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Model/Customer.cs -------------------------------------------------------------------------------- /Src/CustomerManager/Model/CustomerSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Model/CustomerSummary.cs -------------------------------------------------------------------------------- /Src/CustomerManager/Model/OperationStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Model/OperationStatus.cs -------------------------------------------------------------------------------- /Src/CustomerManager/Model/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Model/Order.cs -------------------------------------------------------------------------------- /Src/CustomerManager/Model/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Model/State.cs -------------------------------------------------------------------------------- /Src/CustomerManager/Model/UserLogin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Model/UserLogin.cs -------------------------------------------------------------------------------- /Src/CustomerManager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/CustomerManager/Repository/CustomerManagerContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Repository/CustomerManagerContext.cs -------------------------------------------------------------------------------- /Src/CustomerManager/Repository/CustomerManagerDatabaseInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Repository/CustomerManagerDatabaseInitializer.cs -------------------------------------------------------------------------------- /Src/CustomerManager/Repository/CustomerRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Repository/CustomerRepository.cs -------------------------------------------------------------------------------- /Src/CustomerManager/Repository/DataInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Repository/DataInitializer.cs -------------------------------------------------------------------------------- /Src/CustomerManager/Scripts/angular-ui-bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Scripts/angular-ui-bootstrap.js -------------------------------------------------------------------------------- /Src/CustomerManager/Scripts/breeze.angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Scripts/breeze.angular.js -------------------------------------------------------------------------------- /Src/CustomerManager/Scripts/breeze.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Scripts/breeze.debug.js -------------------------------------------------------------------------------- /Src/CustomerManager/Scripts/breeze.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Scripts/breeze.min.js -------------------------------------------------------------------------------- /Src/CustomerManager/Scripts/tweenMax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Scripts/tweenMax.min.js -------------------------------------------------------------------------------- /Src/CustomerManager/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Web.Debug.config -------------------------------------------------------------------------------- /Src/CustomerManager/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Web.Release.config -------------------------------------------------------------------------------- /Src/CustomerManager/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/Web.config -------------------------------------------------------------------------------- /Src/CustomerManager/app/customersApp/animations/listAnimations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/app/customersApp/animations/listAnimations.js -------------------------------------------------------------------------------- /Src/CustomerManager/app/customersApp/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/app/customersApp/app.js -------------------------------------------------------------------------------- /Src/CustomerManager/app/customersApp/controllers/aboutController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/app/customersApp/controllers/aboutController.js -------------------------------------------------------------------------------- /Src/CustomerManager/app/customersApp/controllers/customers/customerEditController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/app/customersApp/controllers/customers/customerEditController.js -------------------------------------------------------------------------------- /Src/CustomerManager/app/customersApp/controllers/customers/customerOrdersController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/app/customersApp/controllers/customers/customerOrdersController.js -------------------------------------------------------------------------------- /Src/CustomerManager/app/customersApp/controllers/customers/customersController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/app/customersApp/controllers/customers/customersController.js -------------------------------------------------------------------------------- /Src/CustomerManager/app/customersApp/controllers/loginController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/app/customersApp/controllers/loginController.js -------------------------------------------------------------------------------- /Src/CustomerManager/app/customersApp/controllers/navbarController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/app/customersApp/controllers/navbarController.js -------------------------------------------------------------------------------- /Src/CustomerManager/app/customersApp/controllers/orders/orderChildController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/app/customersApp/controllers/orders/orderChildController.js -------------------------------------------------------------------------------- /Src/CustomerManager/app/customersApp/controllers/orders/ordersController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/app/customersApp/controllers/orders/ordersController.js -------------------------------------------------------------------------------- /Src/CustomerManager/app/customersApp/directives/lazyLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/app/customersApp/directives/lazyLoader.js -------------------------------------------------------------------------------- /Src/CustomerManager/app/customersApp/directives/wcUnique.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/app/customersApp/directives/wcUnique.js -------------------------------------------------------------------------------- /Src/CustomerManager/app/customersApp/filters/nameCityStateFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/app/customersApp/filters/nameCityStateFilter.js -------------------------------------------------------------------------------- /Src/CustomerManager/app/customersApp/filters/nameProductFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/app/customersApp/filters/nameProductFilter.js -------------------------------------------------------------------------------- /Src/CustomerManager/app/customersApp/partials/modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/app/customersApp/partials/modal.html -------------------------------------------------------------------------------- /Src/CustomerManager/app/customersApp/services/authService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/app/customersApp/services/authService.js -------------------------------------------------------------------------------- /Src/CustomerManager/app/customersApp/services/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/app/customersApp/services/config.js -------------------------------------------------------------------------------- /Src/CustomerManager/app/customersApp/services/customersBreezeService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/app/customersApp/services/customersBreezeService.js -------------------------------------------------------------------------------- /Src/CustomerManager/app/customersApp/services/customersService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/app/customersApp/services/customersService.js -------------------------------------------------------------------------------- /Src/CustomerManager/app/customersApp/services/dataService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/app/customersApp/services/dataService.js -------------------------------------------------------------------------------- /Src/CustomerManager/app/customersApp/services/httpInterceptors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/app/customersApp/services/httpInterceptors.js -------------------------------------------------------------------------------- /Src/CustomerManager/app/customersApp/services/modalService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/app/customersApp/services/modalService.js -------------------------------------------------------------------------------- /Src/CustomerManager/app/customersApp/views/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/app/customersApp/views/about.html -------------------------------------------------------------------------------- /Src/CustomerManager/app/customersApp/views/customers/customerEdit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/app/customersApp/views/customers/customerEdit.html -------------------------------------------------------------------------------- /Src/CustomerManager/app/customersApp/views/customers/customerOrders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/app/customersApp/views/customers/customerOrders.html -------------------------------------------------------------------------------- /Src/CustomerManager/app/customersApp/views/customers/customers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/app/customersApp/views/customers/customers.html -------------------------------------------------------------------------------- /Src/CustomerManager/app/customersApp/views/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/app/customersApp/views/login.html -------------------------------------------------------------------------------- /Src/CustomerManager/app/customersApp/views/orders/orders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/app/customersApp/views/orders/orders.html -------------------------------------------------------------------------------- /Src/CustomerManager/app/customersApp/views/orders/ordersTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/app/customersApp/views/orders/ordersTable.html -------------------------------------------------------------------------------- /Src/CustomerManager/app/wc.directives/directives/lazyLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/app/wc.directives/directives/lazyLoader.js -------------------------------------------------------------------------------- /Src/CustomerManager/app/wc.directives/directives/menuHighlighter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/app/wc.directives/directives/menuHighlighter.js -------------------------------------------------------------------------------- /Src/CustomerManager/app/wc.directives/directives/wcOverlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/app/wc.directives/directives/wcOverlay.js -------------------------------------------------------------------------------- /Src/CustomerManager/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Src/CustomerManager/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Src/CustomerManager/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Src/CustomerManager/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Src/CustomerManager/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/gulpfile.js -------------------------------------------------------------------------------- /Src/CustomerManager/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/index.html -------------------------------------------------------------------------------- /Src/CustomerManager/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/package.json -------------------------------------------------------------------------------- /Src/CustomerManager/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/packages.config -------------------------------------------------------------------------------- /Src/CustomerManager/server/accessDB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/server/accessDB.js -------------------------------------------------------------------------------- /Src/CustomerManager/server/initMongoDB.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/server/initMongoDB.bat -------------------------------------------------------------------------------- /Src/CustomerManager/server/initMongoDB.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/server/initMongoDB.sh -------------------------------------------------------------------------------- /Src/CustomerManager/server/initMongoData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/server/initMongoData.js -------------------------------------------------------------------------------- /Src/CustomerManager/server/lib/protectJSON.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/server/lib/protectJSON.js -------------------------------------------------------------------------------- /Src/CustomerManager/server/models/customer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/server/models/customer.js -------------------------------------------------------------------------------- /Src/CustomerManager/server/models/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/server/models/state.js -------------------------------------------------------------------------------- /Src/CustomerManager/server/routes/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/server/routes/api.js -------------------------------------------------------------------------------- /Src/CustomerManager/server/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/server/routes/index.js -------------------------------------------------------------------------------- /Src/CustomerManager/server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/server/server.js -------------------------------------------------------------------------------- /Src/CustomerManager/server/views/index.jade: -------------------------------------------------------------------------------- 1 | include ../../index.html 2 | -------------------------------------------------------------------------------- /Src/CustomerManager/test/helpers/serviceFactories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/test/helpers/serviceFactories.js -------------------------------------------------------------------------------- /Src/CustomerManager/test/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/test/karma.conf.js -------------------------------------------------------------------------------- /Src/CustomerManager/test/lib/angular-animate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/test/lib/angular-animate.js -------------------------------------------------------------------------------- /Src/CustomerManager/test/lib/angular-mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/test/lib/angular-mocks.js -------------------------------------------------------------------------------- /Src/CustomerManager/test/lib/angular-route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/test/lib/angular-route.js -------------------------------------------------------------------------------- /Src/CustomerManager/test/lib/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/test/lib/angular.js -------------------------------------------------------------------------------- /Src/CustomerManager/test/lib/breeze.angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/test/lib/breeze.angular.js -------------------------------------------------------------------------------- /Src/CustomerManager/test/lib/breeze.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/test/lib/breeze.min.js -------------------------------------------------------------------------------- /Src/CustomerManager/test/unit/customersControllerSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/test/unit/customersControllerSpec.js -------------------------------------------------------------------------------- /Src/CustomerManager/test/unit/customersServiceSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/test/unit/customersServiceSpec.js -------------------------------------------------------------------------------- /Src/CustomerManager/test/unit/dataServiceSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/test/unit/dataServiceSpec.js -------------------------------------------------------------------------------- /Src/CustomerManager/test/unit/modalServiceSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/test/unit/modalServiceSpec.js -------------------------------------------------------------------------------- /Src/CustomerManager/test/unit/wcOverlaySpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/test/unit/wcOverlaySpec.js -------------------------------------------------------------------------------- /Src/CustomerManager/test/unit/wcUniqueSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/CustomerManager/test/unit/wcUniqueSpec.js -------------------------------------------------------------------------------- /Src/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/LICENSE.txt -------------------------------------------------------------------------------- /Src/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/Src/readme.md -------------------------------------------------------------------------------- /copyFolders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/copyFolders.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanWahlin/AngularJSEndToEndCourseCode/HEAD/readme.md --------------------------------------------------------------------------------