views:

15

answers:

1

Hello, recently my Rails 3 app started asking for a username and password via a browser prompt when loading the home page and not signed in...

<%= javascript_include_tag :all, :cache => true %>

I was able to determine that it's the line above causing the issue. If I remove that it doesn't happen.

Ideas? Have you seen this before ?

Thanks

A: 

Woops! Turns out I had an ajax call for signed in users in the application.js...

bad bad me

AnApprentice