Created
June 13, 2012 19:44
-
-
Save ArunGupta25/2926034 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
Hello from /share! | |
<br/> | |
<% if @photo %> | |
<%= image_tag @photo.image.url %> | |
<h2>Post to Facebook!</h2> | |
<%= form_tag('https://graph.facebook.com/me/feed', :remote => true, :authenticity_token => current_user.fb_token) do %> | |
<div class="field"> | |
<%= hidden_field_tag 'picture', @photo.image.url %> | |
</div> | |
<div class="field"> | |
<%= text_area_tag(:message) %> | |
</div> | |
</br> | |
<div id="postButton" class="actions"> | |
<%= submit_tag %> | |
</div> | |
<% end %> | |
<% else %> | |
Something went wrong. There's no photo! | |
<% end %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment