1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-02 13:22:25 +01:00

Key processing cleanup and bug fixes.

This commit is contained in:
Kris Maglione
2011-01-19 00:35:53 -05:00
parent e28b009036
commit 9546a7adb6
4 changed files with 37 additions and 33 deletions

View File

@@ -1315,7 +1315,7 @@ var array = Class("array", Array, {
* @param {Array} ary
* @returns {Array}
*/
flatten: function flatten(ary) ary.length ? Array.concat.apply([], ary) : [],
flatten: function flatten(ary) ary.length ? Array.prototype.concat.apply([], ary) : [],
/**
* Returns an Iterator for an array's values.