Bug 239919 followup: address reviewer comments, patch by Martijn Wargers <martijn.martijn@gmail.com>

This commit is contained in:
gavin%gavinsharp.com 2005-11-15 00:08:01 +00:00
Родитель 1d73b37ee8
Коммит 9c7d01c5ee
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -427,7 +427,9 @@
break;
case "truespeed":
//needed to update this._scrollDelay
setTimeout(function(x){ x._set_scrollDelay(x.getAttribute('scrolldelay'), false); }, 0, this);
var myThis = this;
var lambda = function() {myThis._set_scrollDelay(myThis.getAttribute('scrolldelay'), false);}
window.setTimeout(lambda, 0);
break;
case "behavior":
this._set_behavior(newValue, canGenerateError);