changeset 17:a79279515c84

update select2 to current git Ignore-this: add03e720d826963b6b9f19c0e3cce7b
author Drew Perttula <drewp@bigasterisk.com>
date Sun, 17 Mar 2013 00:48:49 -0700
parents d44d3e4d415b
children 7ef5365591fd
files makefile template/head.jade.mustache template/tail.jade.mustache
diffstat 3 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/makefile	Sun Mar 17 00:48:23 2013 -0700
+++ b/makefile	Sun Mar 17 00:48:49 2013 -0700
@@ -1,4 +1,4 @@
-all: bin/python static/lib/jquery-1.9.1.min.js static/lib/knockout-2.2.1.js static/lib/select2-3.3.1
+all: bin/python static/lib/jquery-1.9.1.min.js static/lib/knockout-2.2.1.js static/lib/select2
 
 bin/python:
 	bin/pip install -r pydeps
@@ -9,6 +9,6 @@
 static/lib/knockout-2.2.1.js:
 	curl -o $@ http://knockoutjs.com/downloads/knockout-2.2.1.js
 
-static/lib/select2-3.3.1:
-	curl -L -o /tmp/select2.zip https://github.com/ivaynberg/select2/archive/3.3.1.zip 
-	(cd static/lib; unzip /tmp/select2.zip)
+static/lib/select2:
+	git clone git://github.com/ivaynberg/select2.git static/lib/select2
+	(cd static/lib/select2; git checkout --quiet 4530e74e95)
--- a/template/head.jade.mustache	Sun Mar 17 00:48:23 2013 -0700
+++ b/template/head.jade.mustache	Sun Mar 17 00:48:49 2013 -0700
@@ -1,3 +1,3 @@
 meta(name="viewport", content="width=650")
-link(rel="stylesheet", href="{{toRoot}}/static/lib/select2-3.3.1/select2.css")
+link(rel="stylesheet", href="{{toRoot}}/static/lib/select2/select2.css")
 link(rel="stylesheet", href="{{toRoot}}/static/style.css")
\ No newline at end of file
--- a/template/tail.jade.mustache	Sun Mar 17 00:48:23 2013 -0700
+++ b/template/tail.jade.mustache	Sun Mar 17 00:48:49 2013 -0700
@@ -1,4 +1,4 @@
 script(src='{{toRoot}}/static/lib/jquery-1.9.1.min.js')
-script(src='{{toRoot}}/static/lib/select2-3.3.1/select2.min.js')
+script(src='{{toRoot}}/static/lib/select2/select2.js')
 script(src="{{toRoot}}/static/lib/knockout-2.2.1.js")
 script(src="{{toRoot}}/static/gui.js")