blob: a04f205ed3126beccf68174cd11dd6dc1fbd0ffd [file]
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Example - example-NgModelController-debug</title>
<link href="style.css" rel="stylesheet" type="text/css">
<script src="../../../angular.js"></script>
<script src="script.js"></script>
</head>
<body ng-app="customControl">
<form name="myForm">
<div contenteditable
name="myWidget" ng-model="userContent"
strip-br="true"
required>Change me!</div>
<span ng-show="myForm.myWidget.$error.required">Required!</span>
<hr>
<textarea ng-model="userContent"></textarea>
</form>
</body>
</html>