Skip to content

Commit

Permalink
Change move copy order and debug leftover
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
  • Loading branch information
tcitworld committed Aug 28, 2017
1 parent 87da249 commit 2684dc3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions apps/files/js/fileactions.js
Original file line number Diff line number Diff line change
Expand Up @@ -618,8 +618,8 @@
});

this.registerAction({
name: 'CopyMove',
displayName: t('files', 'Copy or Move'),
name: 'MoveCopy',
displayName: t('files', 'Move or copy'),
mime: 'all',
order: -25,
permissions: OC.PERMISSION_UPDATE,
Expand Down
2 changes: 1 addition & 1 deletion apps/files/templates/list.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
<span id="selectedActionsList" class="selectedActions">
<a href="" class="copy-move">
<span class="icon icon-external"></span>
<span><?php p($l->t('Copy or Move'))?></span>
<span><?php p($l->t('Move or copy'))?></span>
</a>
<a href="" class="download">
<span class="icon icon-download"></span>
Expand Down
1 change: 0 additions & 1 deletion core/js/oc-dialogs.js
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,6 @@ var OCdialogs = {
};

var copyCallback = function () {
console.log('copy callback');
functionToCall(OCdialogs.FILEPICKER_TYPE_COPY);
};

Expand Down

0 comments on commit 2684dc3

Please sign in to comment.