Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(892)

Unified Diff: chrome/browser/resources/filebrowse.html

Issue 1736006: Changing filebrowser to append a number on the end of an existing directory.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/filebrowse.html
===================================================================
--- chrome/browser/resources/filebrowse.html (revision 45485)
+++ chrome/browser/resources/filebrowse.html (working copy)
@@ -854,7 +854,6 @@
input.id = 'newfoldername';
input.onblur = blurcallback;
input.onkeypress = keypresscallback;
- input.focus();
input.value = initialName;
link.appendChild(input);
@@ -873,7 +872,19 @@
currentPath += '/';
currentPath += filename;
var existingfolder = $(currentPath);
- if (existingfolder || filename == '') {
+ var counter = 1;
+ while (existingfolder) {
+ var testfilepath = currentPath;
+ testfilepath = testfilepath + counter;
+ existingfolder = $(testfilepath);
+ if (!existingfolder) {
+ currentPath = testfilepath;
+ filename = filename + counter;
+ break;
+ }
+ counter++;
+ }
+ if (filename == '') {
return false;
}
var parent = element.parentNode;
@@ -1081,6 +1092,8 @@
partial(createFolderTyping, id));
list.appendChild(element);
element.scrollIntoView();
+ var inputelement = $('newfoldername');
+ inputelement.focus();
}
///////////////////////////////////////////////////////////////////////////////
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698