@techexp/data-bind
Version:
Easy to use, two-way data binding library, light-weight, and with no dependencies.
30 lines (27 loc) • 449 B
HTML
<html>
<head>
<title>Bind Testing</title>
<style>
.error {
color: crimson;
}
.success {
color: green;
}
.skip {
color: gray;
}
</style>
</head>
<body>
<h1>Bind Test Runner</h1>
<div id="content"></div>
<div id="report">
<ol id="reportList">
</ol>
</div>
</body>
<script src="../dist/data-bind-script.js"></script>
<script src="test-lib.js"></script>
<script src="test.js"></script>
</html>