Index: chrome/browser/resources/file_manager/js/file_manager.js |
=================================================================== |
--- chrome/browser/resources/file_manager/js/file_manager.js (revision 138102) |
+++ chrome/browser/resources/file_manager/js/file_manager.js (working copy) |
@@ -4488,14 +4488,14 @@ |
if (this.directoryModel_.getFileList().length === 0) { |
var text = strf('SEARCH_NO_MATCHING_FILES', searchString); |
noResultsDiv.innerHTML = text; |
- noResultsDiv.hidden = false; |
+ noResultsDiv.setAttribute('show', 'true'); |
} else { |
- noResultsDiv.hidden = true; |
+ noResultsDiv.removeAttribute('show'); |
} |
} |
function hideNoResultsDiv() { |
- noResultsDiv.hidden = true; |
+ noResultsDiv.removeAttribute('show'); |
} |
this.directoryModel_.search(searchString, |