You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

upload.html 495B

123456789101112
  1. <div layout="column" layout-fill layout-align="top center">
  2. <h1>Upload</h1>
  3. <div image-dropzone="fileLoaded(content, file)" class="dropzone">
  4. <img ng-show="image != null" ng-src="{{ image.content | toDataUrl }}">
  5. <p ng-hide="image != null">
  6. Drag a file here or <a href="" ng-click="pickFile()">pick one</a>
  7. </p>
  8. </div>
  9. <button type="button" ng-click="test()" >Test.</button>
  10. <input type="file" class="hidden-input" id="filePicker">
  11. </div>