diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-07-27 16:49:55 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-07-27 16:49:55 +0200 |
commit | f808f1601b548ee4830f7a16b479eadce3b66094 (patch) | |
tree | 6368ffe7fab0ee78e6c3e3ebab26bd62f5c395ca /view/tpl | |
parent | 672c3d7c6df2bf4667546c4376318d8684568014 (diff) | |
download | volse-hubzilla-f808f1601b548ee4830f7a16b479eadce3b66094.tar.gz volse-hubzilla-f808f1601b548ee4830f7a16b479eadce3b66094.tar.bz2 volse-hubzilla-f808f1601b548ee4830f7a16b479eadce3b66094.zip |
rework drag and drop to drag directly into files area, implement the default upload button to work with the same mechanism as drag and drop, revert 560af7a5b8e30001ea6bf9a6d2ea36e94ae904d0 since it did not work so well with the new cloud upload mechanism
Diffstat (limited to 'view/tpl')
-rw-r--r-- | view/tpl/cloud_actionspanel.tpl | 10 | ||||
-rw-r--r-- | view/tpl/cloud_directory.tpl | 2 |
2 files changed, 3 insertions, 9 deletions
diff --git a/view/tpl/cloud_actionspanel.tpl b/view/tpl/cloud_actionspanel.tpl index 9cdd73b31..8976b3007 100644 --- a/view/tpl/cloud_actionspanel.tpl +++ b/view/tpl/cloud_actionspanel.tpl @@ -11,16 +11,10 @@ {{if $quota.limit || $quota.used}}<div class="{{if $quota.warning}}section-content-danger-wrapper{{else}}section-content-info-wrapper{{/if}}">{{if $quota.warning}}<strong>{{$quota.warning}} </strong>{{/if}}{{$quota.desc}}</div>{{/if}} <form id="ajax-upload-files" method="post" action="" enctype="multipart/form-data"> <input type="hidden" name="sabreAction" value="put"> - <div> - <div id="filedrag" style="height: 7em;"><br>{{$dragdroptext}}</div> - </div> - <div id="file-upload-list"></div> - <div class="clear"></div> <label for="files-upload">{{$upload_header}}</label> <div class="clear"></div> - <input class="form-group pull-left" id="files-upload" type="file" name="file[]" multiple> - <button class="btn btn-primary btn-sm pull-right" type="submit" value="{{$upload_submit}}">{{$upload_submit}}</button> + <input class="form-group pull-left" id="files-upload" type="file" name="file" multiple> + <button id="upload-submit" class="btn btn-primary btn-sm pull-right" type="submit" value="{{$upload_submit}}">{{$upload_submit}}</button> </form> <div class="clear"></div> - <hr/> </div> diff --git a/view/tpl/cloud_directory.tpl b/view/tpl/cloud_directory.tpl index 870f7e9e1..06176fdb8 100644 --- a/view/tpl/cloud_directory.tpl +++ b/view/tpl/cloud_directory.tpl @@ -1,4 +1,4 @@ -<div class="section-content-wrapper-np"> +<div id="cloud-drag-area" class="section-content-wrapper-np"> <table id="cloud-index"> <tr> <th width="1%"></th> |