Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the correct way to install jQuery UI in a Meteor application? Since it's not a package yet, I added the jquery-ui.min.js and jquery-1.8.3.js that came in the download into the lib folder in my meteor project. That is causing the following fatal error:

Your app is crashing. Here's the latest log.
app/lib/jquery-1.8.3.js:9472
})( window );

ReferenceError: window is not defined
at app/lib/jquery-1.8.3.js:9472:5

(.........)

Exited with code: 1
Your application is crashing. Waiting for file change.
share|improve this question
3  
This SO question might fix your issue stackoverflow.com/questions/13438127/…. Or this one stackoverflow.com/questions/11009971/… – Scorpion-Prince Dec 26 '12 at 15:48
1  
The second question helped. I moved the files to /public rather than /lib and am not getting a fatal error I haven't experimented actually using the library yet, but the scope of this question was just getting jQuery UI installed. Thanks! – Alex Getty Dec 26 '12 at 16:05

2 Answers

up vote 4 down vote accepted

I have actually added a jquery-ui meteorite package that you can install

mrt install jquery-ui

Note this package is version 1.8.16 and is a dependency of the jquery-ui-bootstrap package which, if installed, will automatically include the jquery-ui and bootstrap-updated smart packages. (All of which make bootstrap and jquery-ui play nicely together).

To install everything, you can use: mrt install jquery-ui-bootstrap

share|improve this answer

You need to put jquery UI in the client directory otherwise it is loaded by Meteor on both client and server and crash your app.

share|improve this answer
that's the stuff – Eyad Ebrahim Apr 22 at 21:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.