Guest User

Untitled

a guest
Dec 15th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. form
  2. ...
  3. <%= f.fields_for :pictures do |pic| %>
  4. <%= render 'picture_fields', f: pic %>
  5. <% end %>
  6. ...
  7.  
  8. response body
  9.  
  10. <script type="text/javascript">try{window.parent.document;}catch(err){document.domain=
  11. document.domain;}</script>
  12. <textarea data-type="text/javascript" data-status="200" data-statusText="OK">
  13. $("div#id5").html("<form class="new_gallery" id=.... LOTS OF CODE....</form>");</textarea>
  14.  
  15. form
  16. ...
  17. <%= f.fields_for :pictures do |pic| %>
  18. <%= pic.file_field :picture %>
  19. <% end %>
  20. ...
  21.  
  22. response body
  23.  
  24. <script type="text/javascript">try{window.parent.document;}catch(err){document.domain=
  25. document.domain;}</script>
  26. <textarea data-type="text/javascript" data-status="200" data-statusText="OK">
  27. $("div#id5").html("<form class="new_gallery" id=... LOTS OF CODE....</form>");</textarea>
Add Comment
Please, Sign In to add comment