diff --git a/prototype/UI/index.html b/prototype/UI/index.html
index 8243ae674..f62ae52ea 100644
--- a/prototype/UI/index.html
+++ b/prototype/UI/index.html
@@ -215,10 +215,10 @@
return this;
}
- function Keyed(object, continuation) {
+ function Dictionary(object) {
this.values = {};
for (key in object) {
- this.values[key] = continuation(object[key]);
+ this.values[key] = object[key];
}
return this;
}