Nicolas Bally 56a0aa9848 initial
2012-06-17 21:11:12 +02:00

17 lines
605 B
Plaintext

$("#portlet_<%= @portlet.id %>").html("<div id='edit_portlet_content_form'></div>");
$("#edit_portlet_content_form").html("<%= escape_javascript(render( :partial => "form")) %>");
$("#edit_portlet_content_form").effect("highlight", {color:"#E9F2F9"}, 500);
$("#edit_portlet_content_form .text_editor").each(function() {
auto_tiny_mce($(this));
});
<%- cancel_button = escape_javascript(link_to("annuler", portlet_portlet_path(@portlet), :class => "button cancel", :remote => true)); %>
$("#portlet_<%= @portlet.id %>").find('.buttons ol').prepend('<%= cancel_button %>');
uninitialize_block_js();