1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 07:27:58 +01:00

Turn search keyword completion back on

This commit is contained in:
Kris Maglione
2008-11-23 09:10:20 +00:00
parent 6d7c9091de
commit fef1cecb75
4 changed files with 71 additions and 38 deletions

View File

@@ -1255,6 +1255,15 @@ const liberator = (function () //{{{
return true;
},
callInMainThread: function (callback)
{
let mainThread = threadManager.mainThread;
if (!threadManager.isMainThread)
mainThread.dispatch({ run: callback }, mainThread.DISPATCH_NORMAL);
else
callback();
},
threadYield: function (flush)
{
let mainThread = threadManager.mainThread;