Commit cd143c33 authored by oleg@chromium.org's avatar oleg@chromium.org

Fix butter bar hide on timeout.

BUG=140877


Review URL: https://chromiumcodereview.appspot.com/10827196

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150330 0039d316-1c4b-4281-b951-d872f2087c98
parent df234f2b
...@@ -169,7 +169,7 @@ ButterBar.prototype.hideError = function() { ...@@ -169,7 +169,7 @@ ButterBar.prototype.hideError = function() {
*/ */
ButterBar.prototype.clearShowTimeout_ = function() { ButterBar.prototype.clearShowTimeout_ = function() {
if (this.showTimeout_) { if (this.showTimeout_) {
clearTimeout(this.hideTimeout_); clearTimeout(this.showTimeout_);
this.showTimeout_ = null; this.showTimeout_ = null;
} }
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment