Guest User

Untitled

a guest
Jan 22nd, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <script type="text/coffeescript">
  2. $(document).ready ->
  3. $(".finished").click (event) ->
  4. event.preventDefault()
  5. $("#save-vote").submit()
  6.  
  7. $("#save-vote").bind "ajax:success", (event, data, status, xhr) ->
  8. $("#try_container").css "display", "block"
  9.  
  10. $(".close").click (event) ->
  11. event.preventDefault()
  12. $("#try_container").css "display", "none"
  13.  
  14. $(".tool_tip_input input").click (event) ->
  15. $(this).val ""
  16.  
  17. $(".tool_tip_input input").blur ->
  18. $(this).val "What's on your mind?" if $(this).val() == ""
  19. </script>
Add Comment
Please, Sign In to add comment