From 54d5c3be80a219ef2e457fbe306caff0eec080c2 Mon Sep 17 00:00:00 2001
From: Geoff Harcourt <geoff.harcourt@gmail.com>
Date: Wed, 9 Jul 2014 16:54:15 -0400
Subject: [PATCH] Fix invalid metadata: add `ignore` to bower.json

Bower complains about a non-existent `ignore` parameter in the `bower.json`
configuration. Added an empty array for now, but it seems like eventually it
might be better to ignore the example HTML files in the Github repo.
---
 bower.json | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/bower.json b/bower.json
index 1262233..9579576 100644
--- a/bower.json
+++ b/bower.json
@@ -39,5 +39,6 @@
     "main": "jquery.sticky.js",
     "dependencies": {
         "jquery": null
-    }
+    },
+    "ignore": []
 }