diff options
author | Thomas Citharel <tcit@tcit.fr> | 2017-08-27 18:01:54 +0200 |
---|---|---|
committer | Thomas Citharel <tcit@tcit.fr> | 2017-09-15 16:53:10 +0200 |
commit | 07c1137abfb792b78b140f97811af4d96fed072c (patch) | |
tree | eabbde8403d9ca06d130bc8d0a9240223e66c623 /core/js/oc-dialogs.js | |
parent | 33f0601862c337799235c06282764fc95fe21f02 (diff) | |
download | nextcloud-server-07c1137abfb792b78b140f97811af4d96fed072c.tar.gz nextcloud-server-07c1137abfb792b78b140f97811af4d96fed072c.zip |
typo
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
Diffstat (limited to 'core/js/oc-dialogs.js')
-rw-r--r-- | core/js/oc-dialogs.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/oc-dialogs.js b/core/js/oc-dialogs.js index f81ead06216..902d5263d04 100644 --- a/core/js/oc-dialogs.js +++ b/core/js/oc-dialogs.js @@ -970,7 +970,7 @@ var OCdialogs = { * @param dir on which to change buttons text * @private */ - _changeButtonsText(type, dir) { + _changeButtonsText: function(type, dir) { var copyText = dir === '' ? t('core', 'Copy') : t('core', 'Copy to {folder}', {folder: dir}); var moveText = dir === '' ? t('core', 'Move') : t('core', 'Move to {folder}', {folder: dir}); var buttons = $('.oc-dialog-buttonrow button'); |