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

Fix No such autocomplete provider: 'history'

In Firefox 49, the 'history' component was removed, so that uses
'unifiedcomplete' here instead.

More to see: https://bugzil.la/1223728
This commit is contained in:
Zheng Chaoping
2016-08-30 15:37:38 +08:00
parent 0c1e9b470b
commit 72e413b3d2

View File

@@ -203,7 +203,7 @@ var Config = Module("config", ConfigBase, {
const { document } = window;
completion.location = function location(context) {
completion.autocomplete("history", context);
completion.autocomplete("unifiedcomplete", context);
context.title = ["Smart Completions"];
};