Sha256: ad7dc10ead4e17c881511722eddea4e59b25f246a1b5459d47431f360829c262
Contents?: true
Size: 1.57 KB
Versions: 33
Compression:
Stored size: 1.57 KB
Contents
<% text_id = "#{type}_#{user.id}_#{(10**10*rand).to_i}" %> <% span_id = "#{text_id}_span" %> <% modal_id = "#{text_id}_modal" %> <% if disable_action %> <div> <span style="width: 88%; float: left;"> <%= current_value %> </span> <span style="width: 8%; float: right;"> <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-question-circle" viewBox="0 0 16 16" data-toggle='tooltip' title='<%= disable_msg %> '> <path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z"/> <path d="M5.255 5.786a.237.237 0 0 0 .241.247h.825c.138 0 .248-.113.266-.25.09-.656.54-1.134 1.342-1.134.686 0 1.314.343 1.314 1.168 0 .635-.374.927-.965 1.371-.673.489-1.206 1.06-1.168 1.987l.003.217a.25.25 0 0 0 .25.246h.811a.25.25 0 0 0 .25-.25v-.105c0-.718.273-.927 1.01-1.486.609-.463 1.244-.977 1.244-2.056 0-1.511-1.276-2.241-2.673-2.241-1.267 0-2.655.59-2.75 2.286zm1.557 5.763c0 .533.425.927 1.01.927.609 0 1.028-.394 1.028-.927 0-.552-.42-.94-1.029-.94-.584 0-1.009.388-1.009.94z"/> </svg> </span> </div> <% else %> <p style="text-align:left;"> <span id='<%= text_id %>'> <%= current_value %> </span> <span id='<%= span_id %>' style="float:right;"> <button style='border:none;, background: transparent;'> ✎ </button> </span> </p> <%= render partial: modal_partial, locals: { modal_id: modal_id, user: user, parent: "#{parent}_#{type}", text: text_id } %> <script type="text/javascript"> $('#<%= span_id %>').click(function() { $('#<%= modal_id %>').modal('show'); }); </script> <% end %>
Version data entries
33 entries across 33 versions & 1 rubygems