adding jquery into the runtime, since we almost certainly will need it.

This commit is contained in:
Danny Yoo 2011-05-20 19:04:42 -04:00
parent 125eed5924
commit 66cbe8eeb5
3 changed files with 23 additions and 8 deletions

6
README
View File

@ -144,8 +144,10 @@ browser.
====================================================================== ======================================================================
This uses the following libraries: This uses code from the following projects:
jshashtable (http://www.timdown.co.uk/jshashtable/) jshashtable (http://www.timdown.co.uk/jshashtable/)
js-numbers (http://github.com/dyoo/js-numbers/) js-numbers (http://github.com/dyoo/js-numbers/)
JSON (http://www.json.org/js.html) JSON (http://www.json.org/js.html)
jquery (http://jquery.com/)

View File

@ -7,7 +7,7 @@
;; Collect the complete list of dependencies for a module. ;; Collect the complete list of dependencies for a module.
(provide get-dependencies get-dependencies*) (provide get-dependencies)
(: get-dependencies (Expression -> (Listof ModuleName))) (: get-dependencies (Expression -> (Listof ModuleName)))
@ -26,8 +26,3 @@
[else [else
'ok])) 'ok]))
(set->list deps))) (set->list deps)))
(: get-dependencies* (Expression -> (Listof ModuleName)))
(define (get-dependencies* expr)
'())

File diff suppressed because one or more lines are too long