From 6c864cecb62b2764f6a9b5dc79d39493bac962fa Mon Sep 17 00:00:00 2001
From: Lukas von Blarer <lukas.vonblarer@gmail.com>
Date: Mon, 26 Nov 2012 13:01:38 +0100
Subject: [PATCH] Fixing trailing comma

---
 picturefill/matchmedia.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/picturefill/matchmedia.js b/picturefill/matchmedia.js
index b542cfc..2daa2cf 100644
--- a/picturefill/matchmedia.js
+++ b/picturefill/matchmedia.js
@@ -40,7 +40,7 @@ window.matchMedia = window.matchMedia || (function (doc, window) {
     // Store the new dimensions.
     _currentDimensions = {
       width: window.innerWidth || doc.documentElement.clientWidth,
-      height: window.innerHeight || doc.documentElement.clientHeight,
+      height: window.innerHeight || doc.documentElement.clientHeight
     };
     // Clear cache.
     _cache = {};
-- 
1.7.11.1

