Merge branch 'hotfix/mobile-bookmarklet' into develop

fix layout determination for mobile bookmarklet
This commit is contained in:
Florian Staudacher 2012-10-05 12:25:33 +02:00
commit 83ab60ab9e
2 changed files with 12 additions and 2 deletions

View file

@ -11,7 +11,17 @@ class StatusMessagesController < ApplicationController
:mobile, :mobile,
:json :json
layout 'blank', :only => [ :bookmarklet ] layout :bookmarklet_layout, :only => :bookmarklet
# Define bookmarklet layout depending on whether
# user is in mobile or desktop mode
def bookmarklet_layout
if request.format == :mobile
'application'
else
'blank'
end
end
# Called when a user clicks "Mention" on a profile page # Called when a user clicks "Mention" on a profile page
# @param person_id [Integer] The id of the person to be mentioned # @param person_id [Integer] The id of the person to be mentioned

View file

@ -18,4 +18,4 @@
}); });
- content_for(:head) do - content_for(:head) do
= javascript_include_tag :mobile = javascript_include_tag :jquery, :mobile