function r_editor(tgetUrl,tpostUrl,tfilename,toption){ if(!toption){ toption =new Array();} if(!toption['width']){toption['width']=400;} if(!toption['height']){toption['height']=300;} var editor = this; editor.filename = tfilename; editor.getUrl = tgetUrl; editor.postUrl = tpostUrl; editor.nodeToBeChanged="" editor.width = toption['width']; editor.height = toption['height']; var html=''; editor.init = function(){ code = ""; html = $(code); html.children("textarea").load(editor.getUrl); html.children("input.discard").click(function(){ editor.destroy(); }); html.children("input.send").click(function(){ editor.send(); }); return html; }; editor.reload = function(){ $.get(editor.getUrl,function(data){ html.children("textarea").text(data); }); }; editor.send = function(){ $.post(editor.postUrl,{filename:editor.filename,context:html.children("textarea").val(),authenticity_token:$('meta[name=csrf-token]').attr('content')},null,"script"); }; editor.destroy = function(){ html.remove(); }; } $(".r_edit").live("click",function(){ new_editor = new r_editor($(this).attr("path"),"edit_file",$(this).attr("filename")); $(this).after(new_editor.init()); }); $(".r_snapshot").live({ mouseenter: function(){ $(this).append($("").html('

')); }, mouseleave: function(){ $(this).find("span:last").remove(); } } ); $('input.multi_files').live("change", function(){ $(this).parent().prev("ul").append("
  • " + $(this).val() + "
  • "); new_node = $(this).parent().clone(); $(this).parent().css("display","none"); new_node.children('input.multi_files').val(""); $(this).parent().before(new_node); }); $('a.remove_mark').live("click",function(){ $(this).prev("input").val("true"); $(this).parent().css("text-decoration","line-through") $(this).parent().removeClass("r_snapshot"); $(this).next().remove(); $(this).remove(); return false; });