Change move copy order and debug leftover
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
07c1137abf
commit
5767659d22
3 changed files with 3 additions and 4 deletions
|
@ -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,
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -257,7 +257,6 @@ var OCdialogs = {
|
|||
};
|
||||
|
||||
var copyCallback = function () {
|
||||
console.log('copy callback');
|
||||
functionToCall(OCdialogs.FILEPICKER_TYPE_COPY);
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue