mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-22 04:07:59 +01:00
change remaining uses of the Array() constructor in array initializations to
literals
This commit is contained in:
@@ -42,9 +42,9 @@ function CommandLine() //{{{
|
||||
const HISTORY_SIZE = 500;
|
||||
|
||||
var completionlist = new InformationList("vimperator-completion", { min_items: 2, max_items: 10 });
|
||||
var completions = new Array();
|
||||
var completions = [];
|
||||
|
||||
var history = new Array();
|
||||
var history = [];
|
||||
var history_index = UNINITIALIZED;
|
||||
var history_start = "";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user