Commit aea4b377 by Torkel Ödegaard

added highestCurrent function (Fixes #57)

parent 1aff1a00
...@@ -187,6 +187,13 @@ function (_) { ...@@ -187,6 +187,13 @@ function (_) {
defaultParams: [25] defaultParams: [25]
}); });
addFuncDef({
name: 'highestCurrent',
category: categories.Filter,
params: [ { name: "count", type: "int" } ],
defaultParams: [5]
});
_.each(categories, function(funcList, catName) { _.each(categories, function(funcList, catName) {
categories[catName] = _.sortBy(funcList, 'name'); categories[catName] = _.sortBy(funcList, 'name');
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment