14 lines
348 B
Plaintext
14 lines
348 B
Plaintext
<script type="text/javascript">
|
|
function submit_poll_edit()
|
|
{
|
|
$('#edit_poll_<%= @poll.id%>').submit();
|
|
}
|
|
</script>
|
|
<%= form_for(@poll) do |f|%>
|
|
<%= f.text_field :polls_name, :required => true, :name => "polls_name"%>
|
|
<a href="#" class="tijiao" onclick="submit_poll_edit();">
|
|
<%= l(:label_button_ok) %>
|
|
</a>
|
|
<% end%>
|
|
|