-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo.html
More file actions
25 lines (23 loc) · 793 Bytes
/
demo.html
File metadata and controls
25 lines (23 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<html ng-app="uploads">
<head>
<title>Angular upload image</title>
</head>
<body>
<form name="contactform" class="form-horizontal">
<div class="control-group">
<div class="controls">
<upload-image
src="http://localhost:8080/upload/test.jpg"
post="upload"
max-height="100"
max-width="100"
spinner="true">
</upload-image>
</div>
</div>
</form>
<script src="js/lib/angular.min.js" type="text/javascript"></script>
<script src="js/lib/canvas-to-blob.min.js" type="text/javascript"></script>
<script src="js/directives/uploads.js" type="text/javascript"></script>
</body>
</html>