lib/generators/redmine_extensions/entity/templates/edit.js.erb.erb in redmine_extensions-0.3.7 vs lib/generators/redmine_extensions/entity/templates/edit.js.erb.erb in redmine_extensions-0.3.8
- old
+ new
@@ -1,16 +1,16 @@
var modal = $("#ajax-modal");
modal.html("<%%= j render(template: '<%= model_name_pluralize_underscored %>/edit', formats: [:html]) %>");
showModal(modal.attr("id"));
var submitButton = {
- text:"<%%=j l(:button_update) -%>",
- title:"<%%=j l(:button_update) -%>",
+ text:"<%%=j l(:button_update) %>",
+ title:"<%%=j l(:button_update) %>",
click: function() {$(this).find('form').submit()},
'class': 'button-positive'
};
var closeButton = {
- text: "<%%=j l(:button_close) -%>",
- title: "<%%=j l(:button_close) -%>",
+ text: "<%%=j l(:button_close) %>",
+ title: "<%%=j l(:button_close) %>",
click: function() {$(this).dialog('close');},
'class': 'button'
};
modal.dialog('option', {
buttons: [closeButton, submitButton]