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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user