Chromium Code Reviews| Index: chrome/browser/resources/chromeos/wallpaper_manager/js/butter_bar.js |
| diff --git a/chrome/browser/resources/chromeos/wallpaper_manager/js/butter_bar.js b/chrome/browser/resources/chromeos/wallpaper_manager/js/butter_bar.js |
| index fc762d59ab3d5884f606d142b437f73d67ddab52..bfd0c735c54c2f108feee5b206c8f104f4417f21 100644 |
| --- a/chrome/browser/resources/chromeos/wallpaper_manager/js/butter_bar.js |
| +++ b/chrome/browser/resources/chromeos/wallpaper_manager/js/butter_bar.js |
| @@ -258,7 +258,9 @@ ButterBar.prototype.onDownloadAbort_ = function(e) { |
| * @param {Event} e A load ProgressEvent from XMLHttpRequest. |
| */ |
| ButterBar.prototype.onDownloadComplete_ = function(e) { |
| - this.hide_(); |
| + var options = {progress: 100, actions: {}, timeout: 0}; |
| + var progressString = 'Loading'; |
|
Nikita (slow)
2012/10/15 15:14:11
String should be localized.
bshe
2012/10/17 00:13:51
Pre discussion with kuscher, we just want to show
|
| + this.show(progressString, options); |
| this.xhr_ = null; |
| }; |