summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoryoshiki@chromium.org <yoshiki@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-09 00:06:32 +0000
committeryoshiki@chromium.org <yoshiki@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-09 00:06:32 +0000
commitc992609d887a6b067831abce00efe7cbba2d783d (patch)
treeddb17fac3f6ad50addef6bb690dffb5958ea7f0a
parent96b257a9e984ea4c4a3c2ba0eb8a03870ea733a8 (diff)
downloadchromium_src-c992609d887a6b067831abce00efe7cbba2d783d.zip
chromium_src-c992609d887a6b067831abce00efe7cbba2d783d.tar.gz
chromium_src-c992609d887a6b067831abce00efe7cbba2d783d.tar.bz2
Merge 190913 "Files.app: fix js errors, renaming this.closerBann..."
> Files.app: fix js errors, renaming this.closerBanner_ -> this.closeWelcomeBanner_. > > Forgot to change it in the previous patch. > > BUG=180308 > TEST=none > R=mtomasz@chromium.org > > > Review URL: https://chromiumcodereview.appspot.com/12907015 TBR=yoshiki@chromium.org Review URL: https://codereview.chromium.org/13855002 git-svn-id: svn://svn.chromium.org/chrome/branches/1453/src@192955 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/browser/resources/file_manager/js/drive_banners.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/resources/file_manager/js/drive_banners.js b/chrome/browser/resources/file_manager/js/drive_banners.js
index b181b53..2dcef13 100644
--- a/chrome/browser/resources/file_manager/js/drive_banners.js
+++ b/chrome/browser/resources/file_manager/js/drive_banners.js
@@ -228,7 +228,7 @@ FileListBannerController.prototype.prepareAndShowWelcomeBanner_ =
dismiss.classList.add('drive-welcome-dismiss');
dismiss.textContent = str('DRIVE_WELCOME_DISMISS');
- dismiss.addEventListener('click', this.closeBanner_.bind(this));
+ dismiss.addEventListener('click', this.closeWelcomeBanner_.bind(this));
this.previousDirWasOnDrive_ = false;
};