From 581c1583d9d8339324a87d8216c7fe6bcf44d7e7 Mon Sep 17 00:00:00 2001 From: "Ashiq A." Date: Sat, 22 Mar 2014 07:44:46 -0400 Subject: [PATCH 1/2] Fix grammer derp --- components/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/index.html b/components/index.html index d1fe5e7..5c5a00d 100644 --- a/components/index.html +++ b/components/index.html @@ -50,10 +50,10 @@

Components

Components.each(this.addOne, this); }, render: function() { - this.$el.find('.component-count').text('There is ' + Components.length + ' components!'); + this.$el.find('.component-count').text('There are ' + Components.length + ' components!'); // Nothing really change in the app yet // TODO Search, Columns } }); var App = new AppView; - \ No newline at end of file + From 7c7188a0b850a5fe8ab5022467093a42c88e9e93 Mon Sep 17 00:00:00 2001 From: "Ashiq A." Date: Sat, 22 Mar 2014 07:46:00 -0400 Subject: [PATCH 2/2] Reference new Timer component --- components/components.json | 1 + 1 file changed, 1 insertion(+) diff --git a/components/components.json b/components/components.json index e10ffed..4fe51e0 100644 --- a/components/components.json +++ b/components/components.json @@ -1,4 +1,5 @@ [ {"name":"TiledMapBuilder", "link": "https://github.com/Kibo/TiledMapBuilder"} , {"name":"ProgressBar", "link": "https://github.com/mucaho/crafty-component-progressbar"} +, {"name":"Timer", "link": "https://github.com/deengames/a-day-and-a-night/blob/master/src/components/timer.js"} ]