Created
December 29, 2012 23:44
-
-
Save anonymous/4410050 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class DisqusablePresenter < Struct.new(:subject) | |
def disqus_id | |
dom_id(subject) | |
end | |
def to_s | |
render :partial => 'disqusable/disqus_thread', :locals => {:subject => self} | |
end | |
end | |
// In the view... | |
<%= raw DisqusablePresenter.new(@post) %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment