(function($){

'use strict';

$(document).ready(function(){
    $(document).on('submit',function(){
        $('input[type=submit]').prop("disabled", true);
        setTimeout('repost_enable()', 3000);
    });
/* unloadイベントはなくなりました
    $(window).unload(function(){
        $('input[type=submit]').prop("disabled", false);
    });
*/
});

})(jQuery);

function repost_enable(){
    $('input[type=submit]').prop("disabled", false);
}
