I have a dropdown menu in my layout/applications.html.erb done with twitter bootstrap

<li class="divider-vertical"></li>
      <li class="dropdown">
      <a href="#" class="dropdown-toggle" data-toggle="dropdown" > <%= current_user.name %> </a>
      <ul class="dropdown-menu">
        <%= link_to 'Preferinte',edit_user_path(current_user) %>
        <a href="/logout">Iesire</a>
      </ul>
</li>

Everything works fine on my local machine but when I uploaded it on EngineYard the dropdown won't work .

link|improve this question

Do you see any errors in your browser's console? – James Feb 19 at 23:46
extensions/event.js:185 Error in event handler for 'undefined': undefined chrome.Event.dispatchextensions/event.js:185 chromeHidden.Port.dispatchOnMessage – andrenkov Feb 20 at 8:18
any funny chrome extensions? – Peter Ehrlich Feb 23 at 5:26
don't think so , I tried it on firefox and safari and I get the same problem . – andrenkov Feb 23 at 15:27
feedback

1 Answer

up vote 1 down vote accepted

Are you on rails 3.0?

Did you compress the rails assets before deploy? Look for server logs to see if its failing to render the required javascript assets & css stylesheets. A good place to start will be to do

rake assets:precompile

or to just disable compressing static assets in production.rb using

config.assets.compress = true
config.assets.compile = true

Also ensure serving static assets is enabled in production.rb

  config.serve_static_assets = false
link|improve this answer
I tried rake assets:precompile but it still didn't work . I'm on rails 3.1.3 and I can't find the rails logs in EngineYard . – andrenkov Feb 20 at 7:45
Is jquery being included correctly? – Kunday Feb 20 at 12:39
yes , <script src="/assets/jquery.js?body=1" type="text/javascript"></script> – andrenkov Feb 20 at 13:10
I've been using jruby on ey, but hopefully this may help. Click ssh (under your environment) to get in, then type cd /data/yourapp/current. This should look familiar! For me, I run tail -n 300 log/trinidad.log to see the end of the log file – Peter Ehrlich Feb 23 at 5:27
I get an permission denied error , is ssh available even for the free trail accounts ? – andrenkov Feb 23 at 16:15
feedback

Your Answer

 
or
required, but never shown

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