Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: angular/angular-seed
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: andrewabogado/practice-angular-tutorial
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 12 commits
  • 9 files changed
  • 2 contributors

Commits on Feb 9, 2015

  1. Update README.md

    Andrew Abogado committed Feb 9, 2015
    Configuration menu
    Copy the full SHA
    52950cf View commit details
    Browse the repository at this point in the history
  2. Create an index.html file under app/search

    Andrew Abogado committed Feb 9, 2015
    Configuration menu
    Copy the full SHA
    83b9e3e View commit details
    Browse the repository at this point in the history
  3. Create search.js, put under search folder and define the routes(URLs)…

    … and controller for the search feature
    Andrew Abogado committed Feb 9, 2015
    Configuration menu
    Copy the full SHA
    07455c4 View commit details
    Browse the repository at this point in the history
  4. Add 'myApp.search' module on app/app.js

    Andrew Abogado committed Feb 9, 2015
    Configuration menu
    Copy the full SHA
    2a68caf View commit details
    Browse the repository at this point in the history
  5. Link search.js in app/index.html

    Andrew Abogado committed Feb 9, 2015
    Configuration menu
    Copy the full SHA
    f322bf6 View commit details
    Browse the repository at this point in the history
  6. Add /search href in app/index.html

    Andrew Abogado committed Feb 9, 2015
    Configuration menu
    Copy the full SHA
    9304c56 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    6b12287 View commit details
    Browse the repository at this point in the history
  8. Inject SearchService into the SearchController to use it get results …

    …from the backend.The form in app/search/index.html calls the search() function. The term is defined by the input field in this page with ng-model=term
    andrewabogado committed Feb 9, 2015
    Configuration menu
    Copy the full SHA
    3fb5760 View commit details
    Browse the repository at this point in the history
  9. Create mock data to for the fake backend

    * Add mock-api.js on /search/mock-api
    * jQuery.grep on bower.json dependencies
    * Modify app/app.js and add a dependency on ngMockE2E
    * Modify app/index.html to include references to jquery.js
    * angular-mocks.js and mock-api.js.
    * Add the following HTML to app/search/index.html to display the search results.
    andrewabogado committed Feb 9, 2015
    Configuration menu
    Copy the full SHA
    de46640 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    dd8bdd1 View commit details
    Browse the repository at this point in the history
  11. To make the results more readable, change the above HTML to use a <ta…

    …ble> and Angular's ng-repeat directive. This section has shown you how to fetch and display search results
    andrewabogado committed Feb 9, 2015
    Configuration menu
    Copy the full SHA
    390adff View commit details
    Browse the repository at this point in the history
  12. Add an Edit Feature

    andrewabogado committed Feb 9, 2015
    Configuration menu
    Copy the full SHA
    e75776d View commit details
    Browse the repository at this point in the history
Loading