diff options
author | Doug Kearns <dougkearns@gmail.com> | 2011-01-04 01:45:53 +1100 |
---|---|---|
committer | Doug Kearns <dougkearns@gmail.com> | 2011-01-04 01:45:53 +1100 |
commit | 28d15242292df3f056064a4d05cc615d4d77d290 (patch) | |
tree | 9464433b851de97067d2438e2211e42852e92f4b | |
parent | 835fabb62d075c5c93d36ff877c88543cfa33ec4 (diff) | |
download | pentadactyl-28d15242292df3f056064a4d05cc615d4d77d290.tar.gz |
Fix :run on FF 3.6.
Closes issue #233.
-rw-r--r-- | common/content/io.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/content/io.js b/common/content/io.js index 7e494fa4..096b5f65 100644 --- a/common/content/io.js +++ b/common/content/io.js @@ -466,7 +466,7 @@ var IO = Module("io", { * otherwise, the return value of *func*. */ withTempFiles: function (func, self, checked) { - let args = array(util.range(0, func.length)).map(this.createTempFile); + let args = array(util.range(0, func.length)).map(this.createTempFile).array; try { if (!args.every(util.identity)) return false; |