mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-17 07:40:22 +00:00
20 lines
580 B
HTML
20 lines
580 B
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<script type="text/javascript"
|
|
src="http://angularjs.org/ng/js/angular-debug.js"></script>
|
|
<script type="text/javascript">
|
|
(function(window, previousOnLoad){
|
|
window.onload = function(){
|
|
try {
|
|
(previousOnLoad||angular.noop)();
|
|
} catch(e) {}
|
|
angular.compile(window.document).$init();
|
|
};
|
|
})(window, window.onload);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
Hello {{'World'}}!
|
|
</body>
|
|
</html>
|