mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-03-11 05:05:51 +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:
@@ -203,7 +203,7 @@ var Config = Module("config", ConfigBase, {
|
|||||||
const { document } = window;
|
const { document } = window;
|
||||||
|
|
||||||
completion.location = function location(context) {
|
completion.location = function location(context) {
|
||||||
completion.autocomplete("history", context);
|
completion.autocomplete("unifiedcomplete", context);
|
||||||
context.title = ["Smart Completions"];
|
context.title = ["Smart Completions"];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user