diff options
| author | Caitlin Potter | 2014-02-21 14:31:23 -0500 |
|---|---|---|
| committer | Caitlin Potter | 2014-02-21 14:52:12 -0500 |
| commit | 2f4513339337bb8aa6c9dfe1191d169b4fc57999 (patch) | |
| tree | ce0d47cee3d490c907cef680cc12e131f2a1cbf9 /example/buzz/buzz.html | |
| parent | 4a6a3ba7fb08ce99007893ef75365a3e8aff938a (diff) | |
| download | angular.js-2f4513339337bb8aa6c9dfe1191d169b4fc57999.tar.bz2 | |
chore(examples): remove ancient examples from the tree
Let these poor scripts retire, goodness.
Closes #6398
Closes #3310
Diffstat (limited to 'example/buzz/buzz.html')
| -rw-r--r-- | example/buzz/buzz.html | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/example/buzz/buzz.html b/example/buzz/buzz.html deleted file mode 100644 index f2bf21ac..00000000 --- a/example/buzz/buzz.html +++ /dev/null @@ -1,50 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> -<html xmlns:ng="http://angularjs.org"> - <head> - <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"></script> - <script type="text/javascript" src="http://angularjs.org/ng/js/angular-debug.js#autobind"></script> - <script type="text/javascript" src="buzz.js"></script> - <link rel="stylesheet" type="text/css" href="http://angularjs.org/ng/css/angular.css"/> - <link rel="stylesheet" type="text/css" href="buzz.css"/> - </head> - <body ng:init="$window.$root = this" ng:controller="BuzzController"> - <div> - <span><angular/> Buzz</span> - <span> - filter: - <input type="text" ng:model="filterText"/> - </span> - <span> - user: - <input type="text" ng:model="userId" required/> - <button ng:click="$location.hashPath = userId">fetch</button> - </span> - </div> - <ul> - <li ng:repeat="item in activities.data.items.$filter(filterText)"> - <h1> - <img ng:src="{{item.actor.thumbnailUrl}}"/> - <a href="{{item.actor.profileUrl}}">{{item.actor.name}}</a> - <a href="#" ng:click="expandReplies(item)">Replies: {{item.links.replies[0].count}}</a> - </h1> - <div> - {{item.object.content | html}} - <div> - <a href="{{attachment.links.enclosure[0].href}}" ng:repeat="attachment in item.object.attachments"> - <img ng:src="{{attachment.links.preview[0].href}}"/> - </a> - </div> - </div> - <my:expand expand="item.replies.show"> - <ul> - <li ng:repeat="reply in item.replies.data.items"> - <img ng:src="{{reply.actor.thumbnailUrl}}"/> - <a href="{{reply.actor.profileUrl}}">{{reply.actor.name}}</a>: - {{reply.content | html}} - </li> - </ul> - </my:expand> - </li> - </ul> - </body> -</html> |
