diff options
Diffstat (limited to 'test.html')
| -rw-r--r-- | test.html | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/test.html b/test.html new file mode 100644 index 0000000..21e4b38 --- /dev/null +++ b/test.html @@ -0,0 +1,61 @@ +<html> + +<link href="modals.css" type="text/stylesheet"></link> +<body> + +<!--ALERT html--> +<div class="mediaDrawer fixed animate alert"> + <div class="box"> + <form> + <span class="message"></span> + <br> + <button class="ok">OK</button> + </form> + </div> +</div> + +<!--CONFIRM html--> +<div class="mediaDrawer fixed animate confirm"> + <span class="close">X</span> + <div class="box"> + <form> + <span class="question"></span> + <br> + <button class="yes">OK</button> + <button class="no">Cancel</button> + </form> + </div> +</div> + +<!--ERROR html--> +<div class="mediaDrawer fixed animate error"> + <span class="close">X</span> + <div class="box"> + <form> + Your submission had errors: + <br> + <span class="errorList"></span> + <br> + <button class="ok">OK</button> + </form> + </div> +</div> + + +<script type="text/javascript" src="jquery.js"></script> +<script type="text/javascript" src="underscore.js"></script> +<script type="text/javascript" src="View.js" ></script> +<script type="text/javascript" src="ModalView.js" ></script> +<script type="text/javascript" src="FormView.js" ></script> +<script type="text/javascript" src="AlertModal.js" ></script> +<script type="text/javascript" src="ConfirmModal.js" ></script> +<script type="text/javascript" src="ErrorModal.js" ></script> +<script type="text/javascript" src="UploadView.js" ></script> +<script type="text/javascript"> +$(document).ready(function(){ + alert("hello"); + +}); +</script> +</body> +</html> |
