Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. def create
  2. @draft = Draft.create(draft_params)
  3. if @draft.save
  4. respond_to do |format|
  5. format.html { redirect_to root_url, notice: "Draft was successfully saved" }
  6. format.js
  7. end
  8. else
  9. render action: 'new'
  10. end
  11. end
  12.  
  13. alert('hello')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement