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

Unified Diff: chrome/browser/resources/file_manager/foreground/js/file_table.js

Issue 111833002: Add missing argument to Element.setAttribute() calls (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 | chrome/browser/resources/file_manager/foreground/js/ui/search_box.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/file_manager/foreground/js/file_table.js
diff --git a/chrome/browser/resources/file_manager/foreground/js/file_table.js b/chrome/browser/resources/file_manager/foreground/js/file_table.js
index 2c9d741eafa6c2d459bb930f011d3e12b0f134ec..3280de32953c67375e810f82bddc3368bbd79c94 100644
--- a/chrome/browser/resources/file_manager/foreground/js/file_table.js
+++ b/chrome/browser/resources/file_manager/foreground/js/file_table.js
@@ -983,7 +983,7 @@ filelist.decorateListItem = function(li, entry, metadataCache) {
*/
set: function(v) {
if (v)
- this.setAttribute('selected');
+ this.setAttribute('selected', '');
else
this.removeAttribute('selected');
var checkBox = this.querySelector('input.file-checkbox');
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/foreground/js/ui/search_box.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698