mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-31 18:15:46 +01:00
Replace expression closures (function expressions - named and dynamic this).
Expression closures are to be axed. See https://bugzil.la/1083458. Leaving deprecated() and literal() calls and method shorthand syntax conversions until after the ESR overlap.
This commit is contained in:
@@ -448,7 +448,7 @@ var Template = Module("Template", {
|
||||
// TODO: This might be mind-bogglingly slow. We'll see.
|
||||
return ["table", {},
|
||||
["tr", { highlight: "Title", align: "left" },
|
||||
this.map(headings, function (h)
|
||||
this.map(headings, h =>
|
||||
["th", {}, h])],
|
||||
this.map(iter, row =>
|
||||
["tr", {},
|
||||
|
||||
Reference in New Issue
Block a user