From 3bf104fbf899f0eab29089dd679c7e2bfda1beb1 Mon Sep 17 00:00:00 2001 From: Matthew Davies Date: Mon, 21 Apr 2014 17:03:06 -0700 Subject: [PATCH 1/2] Added bower.json (closes #75) --- bower.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 bower.json diff --git a/bower.json b/bower.json new file mode 100644 index 0000000..e5ca2d2 --- /dev/null +++ b/bower.json @@ -0,0 +1,15 @@ +{ + "name": "LearnBoost/antiscroll", + "version": "1.0.0", + "main": ["antiscroll.css", "antiscroll.js"], + "description": "Cross-browser native OSX Lion scrollbars", + "license": "MIT", + "ignore": [ + ".jshintrc", + "**/*.txt" + ], + "dependencies": { + "jquery": "~1.9.1", + "jquery-mousewheel": "~3.1.6" + } +} \ No newline at end of file From 9b67eb3c01b530ab86484e6874e743518fa65579 Mon Sep 17 00:00:00 2001 From: Matthew Davies Date: Wed, 1 Oct 2014 15:24:33 -0700 Subject: [PATCH 2/2] Added better version constraint for jQuery (verified that 2.1 works) --- bower.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bower.json b/bower.json index e5ca2d2..871c11e 100644 --- a/bower.json +++ b/bower.json @@ -9,7 +9,7 @@ "**/*.txt" ], "dependencies": { - "jquery": "~1.9.1", + "jquery": ">=1.9.1", "jquery-mousewheel": "~3.1.6" } -} \ No newline at end of file +}