mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-02-13 00:25:47 +01:00
Promisify some callbackish functions, and remove spaces around = in default arguments, per Python conventions.
This commit is contained in:
@@ -33,7 +33,7 @@ lazyRequire("template", ["template"]);
|
||||
* @constructor
|
||||
*/
|
||||
var CompletionContext = Class("CompletionContext", {
|
||||
init: function cc_init(editor, name = "", offset = 0) {
|
||||
init: function cc_init(editor, name="", offset=0) {
|
||||
let self = this;
|
||||
if (editor instanceof this.constructor) {
|
||||
let parent = editor;
|
||||
|
||||
Reference in New Issue
Block a user