mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-17 15:40:22 +00:00
23 lines
872 B
HTML
23 lines
872 B
HTML
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||
|
|
<head>
|
||
|
|
<script type="text/javascript" src="../lib/underscore/underscore.js"></script>
|
||
|
|
<script type="text/javascript" src="../lib/jquery/jquery-1.3.2.js"></script>
|
||
|
|
<script type="text/javascript" src="../src/angular-bootstrap.js"></script>
|
||
|
|
<script type="text/javascript">
|
||
|
|
$(document).ready(function(){
|
||
|
|
angular.compile(document).init();
|
||
|
|
});
|
||
|
|
</script>
|
||
|
|
<link rel="StyleSheet" type="text/css" href="../css/angular.css"/>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
Filter: <input name="filterText">
|
||
|
|
<ul ng-init="names=['misko']">
|
||
|
|
<li ng-repeat="name in names.$filter(filterText)">
|
||
|
|
<a href="" ng-action="greet(name)">{{name}}</a>
|
||
|
|
</li>
|
||
|
|
</ul>
|
||
|
|
</body>
|
||
|
|
</html>
|