Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've created a site with commenting functionality in rails but whenever a user types in a link, it is unclickable and I have to copy and paste it into the browser. Are there any simple fixes for this? Thanks for your help!

share|improve this question

2 Answers

You can install the rails_autolink gem, since the autolink functionality was removed from Rails in 3.1.

share|improve this answer

Before Rails 3.1, you can use a helper method in ActionView::Helpers::TextHelper called auto_link to achieve this.

See this: http://apidock.com/rails/ActionView/Helpers/TextHelper/auto_link

It was removed in Rails 3.1: http://api.rubyonrails.org/classes/ActionView/Helpers/TextHelper.html

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.