Fix 'this' in the delayed spinner timeout.

This commit is contained in:
voussoir 2019-06-15 14:30:23 -07:00
parent 311d1bbf8b
commit 83b7143753

View file

@ -10,7 +10,7 @@ function Spinner(element)
if (delay)
{
this.delayed_showing_timeout = setTimeout(this.show, delay);
this.delayed_showing_timeout = setTimeout(function(thisthis){thisthis.show()}, delay, this);
}
else
{