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

Unified Diff: ui/file_manager/file_manager/foreground/js/file_table.js

Issue 273983002: Keep base direction 'ltr' for entry names consistently. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use single quotation for css files. Created 6 years, 7 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
Index: ui/file_manager/file_manager/foreground/js/file_table.js
diff --git a/ui/file_manager/file_manager/foreground/js/file_table.js b/ui/file_manager/file_manager/foreground/js/file_table.js
index 60594bac2e249a262aff1a2665f42cda05ff03d1..5a217a9e6d5aa5c1db11381033411e2adcce2207 100644
--- a/ui/file_manager/file_manager/foreground/js/file_table.js
+++ b/ui/file_manager/file_manager/foreground/js/file_table.js
@@ -798,6 +798,7 @@ filelist.renderFileNameLabel = function(doc, entry) {
var box = doc.createElement('div');
box.className = 'filename-label';
var fileName = doc.createElement('span');
+ fileName.className = 'entry-name';
fileName.textContent = entry.name;
box.appendChild(fileName);

Powered by Google App Engine
This is Rietveld 408576698