Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Master #10

Open
wants to merge 18 commits into
base: annotate
Choose a base branch
from
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
bower_components/
node_modules/
docs/
.sass-cache/
.sass-cache/
bin/
10 changes: 7 additions & 3 deletions GruntFile.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ module.exports = function (grunt)
separator: "\n\n"
},
dist: {
src: [],
dest: 'src/resources/js/<%= pkg.name %>.js'
src: ['src/resources/js/**/*.js'],
dest: 'src/<%= pkg.name %>.js'
},
deps: {
src: [
Expand All @@ -17,13 +17,17 @@ module.exports = function (grunt)
'bower_components/bootstrap/dist/js/bootstrap.js',
'bower_components/angularjs/angular.min.js',
],
dest: 'src/resources/js/<%= pkg.name %>-deps.js'
dest: 'src/<%= pkg.name %>-deps.js'
},
css: {
src: ['bower_components/bootstrap/dist/css/bootstrap.min.css',
'src/resources/css/styles.css'
],
dest: 'src/resources/css/<%= pkg.name %>.css'
},
move: {
src: ['bower_components/angularjs/angular.min.js.map'],
dest: 'src/angular.min.js.map'
}
},

Expand Down
28 changes: 26 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Accio Code Tutorials: AngularJS#

***Updated: 12-6-14***
***Updated: 2-10-16***

This tutorial series for [AccioCode](https://www.youtube.com/user/CDPAdvertising "Accio Code on YouTube") will show how to use the basics of AngularJS. You will learn how to make a simple web page and a simple web application.

Expand All @@ -22,4 +22,28 @@ It is an MVC (Model-View-Controller) framework so a brief understanding of MVC i
10. [Isolate Scope Part 2](http://youtu.be/UMoDVY8HAVk "Isolate Scope Part 2")
11. [Services and JSON](http://youtu.be/rHmk0UhJSb4 "Services and JSON")
12. [Ng-Repeat](http://youtu.be/CqaoKt1Gvyk "Ng-Repeat")
13. [Filters and Sorting](http://youtu.be/7nOcg6SPspI "Filters and Sorting")
13. [Filters and Sorting](http://youtu.be/7nOcg6SPspI "Filters and Sorting")
14. [Compile Part 1](https://www.youtube.com/watch?v=FemQfKf03gY "Compile, Pre, Post")
15. [Compile Part 2](https://www.youtube.com/watch?v=uV_YoyQhrJY "$compile")
16. [Transclude](https://www.youtube.com/watch?v=A0mdSbdE7-E "Transclude")
17. [Config, NgView and NgRoute](https://www.youtube.com/watch?v=ZtqzeYooMw4 "Config, NgView and NgRoute")
18. [Route Params](https://www.youtube.com/watch?v=BmYVs4LY3OM "Route Params")
19. [Custom Provider](https://www.youtube.com/watch?v=FemQfKf03gY "Custom Provider")
20. [Injectors and Invoke](https://www.youtube.com/watch?v=Z8mE2-TWoQ8 "Injectors and Invoke")
21. [NgAnnotate and Minification](http://youtu.be/4waCqOuw3Tc "NgAnnotate and Minification")
22. [NgDocs](http://youtu.be/e31elKr5hD0 "NgDocs")
23. [Starting The Single Page Website](https://www.youtube.com/watch?v=V6unYD1QrAs "Starting the Single Page Website")
24. [Setting Up Gulp](https://www.youtube.com/watch?v=FhLpL24xGXU "Setting Up Gulp")
25. [Single Page Website App, Config and Module](https://www.youtube.com/watch?v=IuBIk1oJ-Uw "Single Page Website App, Config and Module")
26. [Making the Home Page](https://www.youtube.com/watch?v=xlmx19wo9Dc "Making the Home Page")
27. [Adding Content to the Home Page](http://youtu.be/0Gzuaoo4j3s "Adding Content to the Home Page")
28. [Making Our Marvel Phases Sub-Menu](http://youtu.be/3x90mxH5wVg "Making Our Marvel Phases Sub-Menu")
29. [Parsing Upcoming Movies By Date](http://youtu.be/tS-XbfD1iVE "Parsing Upcoming Movies By Date")
30. [Gulp Tasks for Sass](https://www.youtube.com/watch?v=o8-MWsWKonI "Gulp Tasks for Sass")
31. [Making Interior Pages](https://www.youtube.com/watch?v=xHxaw2Epinc "Making Interior Pages")
32. [Date and Currency Formatting](https://www.youtube.com/watch?v=9AYXMQqJ_6g "Date and Currency Formatting")
33. [Using Compile to Change Content](https://www.youtube.com/watch?v=Ob9E1-TFUBs "Using Compile to Change Content")
34. [Starting Our Webpage Contact Form](http://youtu.be/L34s4xwBvwE "Starting Our Webpage Contact Form")
35. [Styling Our Contact Form](https://www.youtube.com/watch?v=INuhVedMnso "Styling Our Contact Form")
36. [Contact Form Controller](https://www.youtube.com/watch?v=_Dw5ngrt_Xg "Contact Form Controller")
37. [Finishing Our Contact Form](https://www.youtube.com/watch?v=zdOBe4_qbWs "Finishing Our Contact Form")
8 changes: 8 additions & 0 deletions src/angular.min.js.map

Large diffs are not rendered by default.

Loading