Skip to content

Instantly share code, notes, and snippets.

@fujimura
Created November 19, 2010 08:58
Show Gist options
  • Save fujimura/706270 to your computer and use it in GitHub Desktop.
Save fujimura/706270 to your computer and use it in GitHub Desktop.
application_helper.rb
module ApplicationHelper
def fb_user_tag(user)
content_tag :span, 'data-fb-uid' => user.uid, 'data-fb-key' => 'name' do
link_to ".", fb_path(:id => user.uid, :key => 'name'), :remote => true
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment