From 1a4e3cf0bff703b00ba50599a7dcac71ead70cba Mon Sep 17 00:00:00 2001 From: Matt Patterson Date: Tue, 6 May 2014 18:18:09 +0200 Subject: [PATCH] loosen jquery version dependency The previous jQuery version dependency tied the plugin to version 1.7, not 1.7.1 or higher. I'm assuming this is compatible with 2.X too, so loosened it to >=1.7. If it's not 2.X compatible, you could tighten it to ~1.7 for all 1.X releases after 1.7 --- bower.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bower.json b/bower.json index e6bb75a..eb99c4a 100755 --- a/bower.json +++ b/bower.json @@ -6,7 +6,8 @@ "license": "MIT", "ignore": [], "dependencies": { - "jquery": "1.7.0" + "jquery": ">=1.7.0" }, "devDependencies": {} -} \ No newline at end of file +} +