Confirmed users
448
edits
mNo edit summary |
|||
Line 45: | Line 45: | ||
== setTimeout/setInterval == | == setTimeout/setInterval == | ||
<pre style="white-space: pre-wrap;">Your add-on calls the setTimeout or setInterval functions with string rather than function arguments, which is normally not allowed. For instance, setTimeout('object.doStuff()') should be written as setTimeout(function () { object.doStuff() }) instead.</pre> | <pre style="white-space: pre-wrap;">Your add-on calls the setTimeout or setInterval functions with string rather than function arguments, which is normally not allowed. For instance, setTimeout('object.doStuff()',1) should be written as setTimeout(function () { object.doStuff() },1) instead.</pre> | ||
== Preferences not in "extensions." == | == Preferences not in "extensions." == |