mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-24 00:52:27 +01:00
Replace expression closures (methods).
Expression closures are to be axed. See https://bugzil.la/1083458.
This commit is contained in:
@@ -51,7 +51,9 @@ var QuickMarks = Module("quickmarks", {
|
||||
* @param {string} mark The mark to find.
|
||||
* @returns {string} The mark's URL.
|
||||
*/
|
||||
get: function (mark) this._qmarks.get(mark) || null,
|
||||
get: function (mark) {
|
||||
return this._qmarks.get(mark) || null;
|
||||
},
|
||||
|
||||
/**
|
||||
* Deletes the specified quickmarks. The *filter* is a list of quickmarks
|
||||
|
||||
Reference in New Issue
Block a user