Meteor-CollectionFS icon indicating copy to clipboard operation
Meteor-CollectionFS copied to clipboard

How to multi download on one button

Open thearabbit opened this issue 7 years ago • 0 comments

I would like to Multi download on one button

<template name="fileList">
  <div class="fileList">
    {{#each files}}
      <div class="file">
        <strong>{{this.name}}</strong> <a href="{{this.url download=true}}" class="btn btn-primary" target="_parent">Download</a>
      </div>
    {{/each}}

    <button class="downloadAll">Download All</button
  </div>
</template>
---------
// js

Please help me

thearabbit avatar Nov 13 '18 04:11 thearabbit