297374 add missing |this.| to fix a JS syntax error

r=neil sr=darin a=bsmedberg


git-svn-id: svn://10.0.0.236/trunk@175106 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
cbiesinger%web.de 2005-06-24 19:39:25 +00:00
parent 409beef04c
commit e2b40b606d

View File

@ -383,7 +383,7 @@ nsHelperAppDialog.prototype = {
notify: function (aTimer) {
if (!this._blurred)
this.mDialog.document.documentElement.getButton('accept').disabled = false;
_timer = null;
this._timer = null;
},
_blurred: false,
@ -400,7 +400,7 @@ nsHelperAppDialog.prototype = {
return;
this._blurred = false;
if (!_timer) {
if (!this._timer) {
// Don't enable the button if the initial timer is running
var script = "document.documentElement.getButton('accept').disabled = false";
this.mDialog.setTimeout(script, 250);