I'm interested in using a relatively simplistic subset of the phonecat application; I'm working from an older version. Right now I'd like to take a page with many books, and let a single list, narrowed as the user enters search strings, be displayed.
What I have on the page is below. I can post scripts if you want, but they're based off of https://cjshayward.com, so the first script is https://cjshayward.com/wp-content/javascripts/angular-search-page.js , the second is https://cjshayward.com/wp-content/javascripts/angular.min.js, the third at https://cjshayward.com/wp-content/javascripts/angular-sanitize.js , and the fourth at https://cjshayward.com/wp-content/javascripts/controllers.js . I have, on a page immediately under https://cjshayward.com, the following: <script src="/wp-content/javascripts/angular-search-page.js"></script><script src="/wp-content/javascripts/angular.min.js"></script><script src="/wp-content/javascripts/angular-sanitize.js"></script><script src="/wp-content/javascripts/controllers.js"></script> <h2>Anthologies & collections</h2> <p class="search"><strong>Search books: <input class="search" type="search" placeholder="What kind of book would you like?" /></strong></p> <table id="book-list" border="0"> <tbody> <tr> <th><a><img /></a></th> <td> {{ book.links }} {{ book.snippet }} </td> </tr> </tbody> </table> Thanks, Christos -- You received this message because you are subscribed to the Google Groups "Angular and AngularJS discussion" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/angular. For more options, visit https://groups.google.com/d/optout.
