forked from bofh/fetsite
AutoCommit Fre Jul 31 18:03:05 CEST 2015
This commit is contained in:
@@ -4,9 +4,11 @@ if current_user.nil?
|
||||
else
|
||||
value=(current_user.id.nil?)? false : choice.answers.where(user_id: current_user.id).count>0
|
||||
cstyle=(value) ? "true" :"false"
|
||||
t= link_to ((value)? fa_icon("arrow-right"): "")+choice.text, answer_survey_question_path(choice.question, class: "choice-"+cstyle, params: {survey_question: {selected: [choice.id]}})
|
||||
t= link_to raw("" + choice.html), answer_survey_question_path(choice.question, params: {survey_question: {selected: [choice.id]}}),class: "choice-"+cstyle
|
||||
end
|
||||
|
||||
%>
|
||||
<%= t %>
|
||||
<%= ff_icon("ffi2-boy12") %>
|
||||
|
||||
|
||||
<%= t %> <%= link_to fa_icon("pencil"), edit_survey_choice_path(choice) , class: "btn btn-link navbar-btn"
|
||||
%>
|
||||
|
||||
@@ -1,12 +1,44 @@
|
||||
<%= semantic_form_for @choice do |f| %>
|
||||
<%= f.inputs do %>
|
||||
<%= f.input :text %>
|
||||
<%= f.input :question %>
|
||||
|
||||
<%= f.input :sort %>
|
||||
<%= f.input :picture %>
|
||||
<%= f.input :picture, :input_html=>{:id=>"iconfield"} %>
|
||||
<% end %>
|
||||
<i id="icon" style="font-size:2em" class="<%= @choice.picture %>"></i><a href="#" id="openselect" onclick=""> Choose Icon</a>
|
||||
|
||||
<%= f.actions do %>
|
||||
<%= f.action :submit, :as => :input %>
|
||||
<% end %>
|
||||
<% end %>
|
||||
<script>
|
||||
$(
|
||||
function()
|
||||
{$('#iconfield').on('change', function(){$('#icon').attr("class",$(this).val())});
|
||||
$("#dialog").dialog({width:'100%', position:'center top', at:'left top',autoOpen: false,closeOnEscape: false});
|
||||
$("#openselect").on('click', function(){$('#dialog').dialog('open')});
|
||||
});
|
||||
</script>
|
||||
|
||||
<div style="font-size:2em; line-height:1.2em" id ="dialog" title="Icon">
|
||||
<p>
|
||||
<% ffi1_list.each do |i| %>
|
||||
<a onclick="$('#iconfield').val('ffi1-<%= i %>');$('#icon').attr('class','ffi1-<%= i %>'); $('#dialog').dialog('close')" href="#"><%=ffi1_icon(i)%>
|
||||
</a>
|
||||
<% end %>
|
||||
</p>
|
||||
<p>
|
||||
<% ffi2_list.each do |i| %>
|
||||
<a onclick="$('#iconfield').val('ffi2-<%= i %>');$('#icon').attr('class','ffi2-<%= i %>'); $('#dialog').dialog('close')" href="#"><%=ffi2_icon(i)%>
|
||||
</a>
|
||||
<% end %>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<% fa_list.each do |i| %>
|
||||
<a onclick="$('#iconfield').val('fa <%= i %>');$('#icon').attr('class','fa <%= i %>'); $('#dialog').dialog('close')" href="#"><%=ff_icon('fa '+i)%>
|
||||
</a>
|
||||
<% end %>
|
||||
|
||||
</p>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user