mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-04 02:04:14 +01:00
Normalise the use of "func" vs "fn" for function references.
"func" had the numbers.
This commit is contained in:
@@ -724,8 +724,8 @@ const liberator = (function () //{{{
|
||||
triggerObserver: function (type)
|
||||
{
|
||||
let args = Array.slice(arguments, 1);
|
||||
for (let [,fn] in Iterator(observers[type] || []))
|
||||
fn.apply(null, args);
|
||||
for (let [,func] in Iterator(observers[type] || []))
|
||||
func.apply(null, args);
|
||||
},
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user