/* -------------------------------------------------------------------------
 * application.js
 * Copyright (c) 2006-2009 Mat Harvard. All rights reserved.
 * ------------------------------------------------------------------------- */

$(function() {
  $("#new_comment").submit(function() {
    submit_button = $(this + "input[type=submit]")
    submit_button.attr("disabled", "disabled")
    submit_button.attr("value", "Please wait...")
  });
  
  $("#preview_button").click(function() {
    $(this).attr("disabled", "disabled")
    $(this).attr("value", "Generating preview...")
    $.post("/comments/preview.js",
      $("#new_comment").serializeArray(), null, "script"
    )
  });
  
  $("#toggle_comment_preview").click(function() {
    $("#preview_button").removeAttr("disabled")
    $("#preview_button").attr("value", "Preview")
    $("#comment_preview_pane").hide()
    $("#comment_form_pane").show()
  });
});
