Guest User

Untitled

a guest
Jun 21st, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. UpdateSaveMessage = () ->
  2. [cls, message] =
  3. if $("#Entry_Status").val() == "Draft"
  4. ["warning", "saved as a draft"]
  5. else
  6. [
  7. "info",
  8. "posted to your blog, and published " +
  9. if $("#publish-on-date").val().length
  10. "on " + $("#publish-on-date").val() + " at " + ($("#publish-on-time").val() || "12:00 pm")
  11. else
  12. "immediately"
  13. ]
  14.  
  15. $("#save-message")
  16. .text(message)
  17. .parent(".submit-row")
  18. .attr("class", cls + " submit-row")
Add Comment
Please, Sign In to add comment