Skip to content

karthick-manoharan/ng-training

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ng-training

A sample project for Angular.js training.

Angular.js is an awesome MVC framework from Google. The intention of this project is to help others in understanding the various concepts/features of Angular.js

Contents

  • Intro
  • Data Binding
  • Search
  • Table Sort
  • List
  • Filters
  • HTTP
  • Directives

Version

Angular.js. 1.2.6

Installation

git clone [git-repo-url] ng-training
cd ng-training
python -m SimpleHTTPServer

Routes Availabe

$routeProvider
  .when("/home", {
    templateUrl:"partials/list.html"
  })
  .when("/intro", {
    templateUrl:"partials/intro.html"
  })
  .when("/example/data-binding", {
    templateUrl:"partials/data-binding.html"
  })
  .when("/example/search", {
    templateUrl:"partials/search.html"
  })
  .when("/example/table-sort", {
    templateUrl:"partials/table-sort.html"
  })
  .when("/example/list", {
    templateUrl:"partials/listing.html"
  })
  .when("/example/filters", {
    templateUrl:"partials/filters.html"
  })
  .when("/example/http", {
    templateUrl:"partials/http.html"
  })
  .when("/example/directives", {
    templateUrl:"partials/directives.html"
  })
  .otherwise({
    redirectTo:'/home'
  });

License

MIT

About

A sample project for Angular.js training

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 51.9%
  • CSS 31.4%
  • HTML 16.7%