From 5b6eab0878ce5916cfedafd2d8e219a0f220db0d Mon Sep 17 00:00:00 2001 From: "Ethan J. Brown" Date: Mon, 1 Apr 2013 12:12:04 -0300 Subject: [PATCH] Fix: Incorrect Bower specification - ~ version means 1.4.x, not >= 1.4 which is what we want - there is no spinner.gif, but there is a select2-spinner.gif --- component.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/component.json b/component.json index 2a46b66a..302cf22d 100644 --- a/component.json +++ b/component.json @@ -1,8 +1,8 @@ { "name": "select2", "version": "3.3.2", - "main": ["select2.js", "select2.css", "select2.png", "select2x2.png", "spinner.gif"], + "main": ["select2.js", "select2.css", "select2.png", "select2x2.png", "select2-spinner.gif"], "dependencies": { - "jquery": "~1.4.4" + "jquery": ">= 1.4.4" } }