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

When I test my site locally it works fine, but once I push to heroku the drop down menu doesn't work.

my application.js file contains this:

    //= require bootstrap
    //= require jquery
    //= require jquery_ujs
    //= require_tree .

my application.html.erb file contains this

<!DOCTYPE html>
<html>
<head>
    <title> <%= full_title(yield(:title)) %> </title>
    <%= stylesheet_link_tag    "application", :media => "all" %>
    <%= javascript_include_tag "application" %>
    <%= csrf_meta_tags %>
    <%= render 'layouts/shim' %>
</head>

<body>
    <%= render 'layouts/header' %>  
    <div class="container">
        <%= yield %>
    </div>
</body>
</html>

my header partial which is where the drop down menus are, contains this

<header class="navbar navbar-fixed-top">
  <div class="navbar-inner">
    <div class="container">
      <ul class="nav pull-left">
        <li>
      <%= link_to image_tag("WML_header2.png", :alt => 'Wheres My Lan'), home_path%> 
        </li>
      </ul>
      <nav>
        <ul class="nav pull-right">
            </br>
            <li><%= link_to "Heat Map",  heatMap_path %></li>
            <% if signed_in? %>
            <li><%= link_to "New Update",  new_message_path %></li>


            <li id="fat-menu" class="dropdown">
              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
                View <b class="caret"></b>
              </a>
          <ul class="dropdown-menu">
            <li><%= link_to "Users", users_path %></li>
            <li><%= link_to "Reports", reports_path %></li>
            <li><%= link_to "Statistics", stats_path %></li>
          </ul>
        </li>


        <li id="fat-menu" class="dropdown">
          <a href="#" class="dropdown-toggle" data-toggle="dropdown">
            Account <b class="caret"></b>
          </a>
              <ul class="dropdown-menu">
                <li><%= link_to "Profile", current_user %></li>
                <li><%= link_to "Settings", settings_path %></li>
                <li class="divider"></li>
                <li>
                  <%= link_to "Sign out", signout_path, method: "delete" %>
                </li>
              </ul>
            </li>
          <% else %>
            <li><%= link_to "Admin sign in", signin_path %></li>

          <% end %>
          <li><%= link_to "About",  about_path %></li>
          <li><%= link_to "Contact", contact_path %></li>
        </ul>
      </nav>
    </div>
  </div>
</header>
share|improve this question
Sounds similar to this one: stackoverflow.com/questions/9966064/… – Jules Copeland Aug 20 '12 at 16:55

3 Answers

What is the generated HTML? Are there any errors as reported by Chrome's Developer Toolbar?

My guess it is expecting a javascript file in a certain location, and it is not seeing it there.

share|improve this answer
there are no errors. I also imported bootstrap into my custom.css file so everything should be there – user1452463 Jul 27 '12 at 17:03
Don't know what else to tell ya, except go see if Fiddler could give you any more clues as to why it's not working. Perhaps you'll find that one file is not getting a 200. – Paolo del Mundo Jul 27 '12 at 17:34

Check the order that jQuery is loading in. jQuery "first", all your other plugins come later.

share|improve this answer

Did you try to move //=require bootstrap right after //= require jquery? This solved my similar problem.

share|improve this answer

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.