Guest User

Untitled

a guest
Jan 19th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. var attZone = new FileDrop('fdzone');
  2.  
  3. // FileList is a simple array-like object
  4. // with many useful File-related methods:
  5. var activeUpload = new fd.FileList;
  6. attZone.multiple(true);
  7.  
  8. attZone.event('send', function (files) {
  9. files.each(function (file) {
  10.  
  11. file.event('done', function (xhr) {
  12. var resp = JSON.parse(xhr.response).d;
  13.  
  14. CheckinArticleAttachment(resp).done(UpdateArticleAttachmentList());
Add Comment
Please, Sign In to add comment