angular.js/example/temp.html

16 lines
574 B
HTML
Raw Normal View History

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
2010-04-09 23:20:15 +00:00
<head>
2010-07-27 22:54:50 +00:00
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"></script>
<script type="text/javascript"
src="../src/angular-bootstrap.js#autobind"></script>
2010-04-09 23:20:15 +00:00
</head>
<body ng:init="$window.$root = this">
2010-07-27 22:54:50 +00:00
<div ng:click="$window.alert('outter')">
outter
<div ng:click="$window.alert('inner')">inner</div>
<a href="#ERROR" ng:click="$window.alert('link')">link</a>
</div>
2010-04-09 23:20:15 +00:00
</body>
</html>