Commit e2906ae9 authored by bauerb@chromium.org's avatar bauerb@chromium.org

Only set throbber visibility for throbbers in the Sync setup overlay.

BUG=259798

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215899 0039d316-1c4b-4281-b951-d872f2087c98
parent 5c5e64e5
......@@ -651,7 +651,7 @@ cr.define('options', function() {
* visible.
*/
setThrobbersVisible_: function(visible) {
var throbbers = document.getElementsByClassName('throbber');
var throbbers = this.pageDiv.getElementsByClassName('throbber');
for (var i = 0; i < throbbers.length; i++)
throbbers[i].style.visibility = visible ? 'visible' : 'hidden';
},
......
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