From d64b0b8609e9e8bb398f1b2a52249f7380c05e1d Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Fri, 11 Feb 2011 11:57:13 -0500 Subject: [PATCH] More on last commit. --- common/content/abbreviations.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/content/abbreviations.js b/common/content/abbreviations.js index dc2ad47d..238ced70 100644 --- a/common/content/abbreviations.js +++ b/common/content/abbreviations.js @@ -80,8 +80,8 @@ var AbbrevHive = Class("AbbrevHive", Contexts.Hive, { */ get merged() { // Wth? --Kris; - let map = array(values(this._store)).map(Iterator).map(iter.toArray) - .flatten().toObject(); + let map = values(this._store).map(Iterator).map(iter.toArray) + .flatten().toObject(); return Object.keys(map).sort().map(function (k) map[k]); },