summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2014-09-04 12:33:38 +0200
committerVincent Petry <pvince81@owncloud.com>2014-09-04 12:34:17 +0200
commit6ca9e2743860b56152931c0fb8d96745db51d942 (patch)
treeed286ca3915f052266a3127d54e741307d10738d /apps
parent9ae000676c812f5c7f583594ff61462fdcebb2eb (diff)
downloadnextcloud-server-6ca9e2743860b56152931c0fb8d96745db51d942.tar.gz
nextcloud-server-6ca9e2743860b56152931c0fb8d96745db51d942.zip
Scroll to new file/folder after adding
When creating a new file from the menu, the list now scrolls to that file.
Diffstat (limited to 'apps')
-rw-r--r--apps/files/js/file-upload.js4
-rw-r--r--apps/files/js/filelist.js11
2 files changed, 10 insertions, 5 deletions
diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js
index 310799b9513..460c2435642 100644
--- a/apps/files/js/file-upload.js
+++ b/apps/files/js/file-upload.js
@@ -629,7 +629,7 @@ OC.Upload = {
},
function(result) {
if (result.status === 'success') {
- FileList.add(result.data, {hidden: hidden, animate: true});
+ FileList.add(result.data, {hidden: hidden, animate: true, scrollTo: true});
} else {
OC.dialogs.alert(result.data.message, t('core', 'Could not create file'));
}
@@ -645,7 +645,7 @@ OC.Upload = {
},
function(result) {
if (result.status === 'success') {
- FileList.add(result.data, {hidden: hidden, animate: true});
+ FileList.add(result.data, {hidden: hidden, animate: true, scrollTo: true});
} else {
OC.dialogs.alert(result.data.message, t('core', 'Could not create folder'));
}
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index 7b9811d50bb..44f035fed1a 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -722,9 +722,10 @@
*
* @param fileData map of file attributes
* @param options map of attributes:
- * - "updateSummary": true to update the summary after adding (default), false otherwise
- * - "silent": true to prevent firing events like "fileActionsReady"
- * - "animate": true to animate preview loading (defaults to true here)
+ * @param options.updateSummary true to update the summary after adding (default), false otherwise
+ * @param options.silent true to prevent firing events like "fileActionsReady"
+ * @param options.animate true to animate preview loading (defaults to true here)
+ * @param options.scrollTo true to automatically scroll to the file's location
* @return new tr element (not appended to the table)
*/
add: function(fileData, options) {
@@ -773,6 +774,10 @@
});
}
+ if (options.scrollTo) {
+ this.scrollTo(fileData.name);
+ }
+
// defaults to true if not defined
if (typeof(options.updateSummary) === 'undefined' || !!options.updateSummary) {
this.fileSummary.add(fileData, true);