launchscout / nku

NKU Class Spring
5 stars 14 forks source link

Site won't collapse on mobile #90

Closed alexkoepke closed 10 years ago

alexkoepke commented 10 years ago

Here is my app, http://sheltered-beach-2844.herokuapp.com/, the site will collapse if you change your desktops browser window. However, if you open it on your phone it will not collapse.

/app/assets/javascripts/application.js

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

/app/assets/stylesheets/application.scss

@import 'bootstrap'

https://github.com/alexkoepke/nku-project

cdmwebs commented 10 years ago

Add this to the head of your application layout:

<meta name="viewport" content="width=device-width, initial-scale=1"> — Sent from Mailbox for iPhone

On Sat, Apr 5, 2014 at 1:11 AM, Alex Koepke notifications@github.com wrote:

Here is my app, http://sheltered-beach-2844.herokuapp.com/, the site will collapse if you change your desktops browser window. However, if you open it on your phone it will not collapse. /app/assets/javascripts/application.js

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

/app/assets/stylesheets/application.scss

@import 'bootstrap'

https://github.com/alexkoepke/nku-project

Reply to this email directly or view it on GitHub: https://github.com/gaslight/nku/issues/90

alexkoepke commented 10 years ago

Hell yeah! Thanks!