Tabelle

Allgemein

Profil

Kommentarvorschlag - app/views/issues/_edit.html.erb

Technische Details
15.03.2022

>         <!-- atabellen Kommentarvorschlag -->
>         <script>
>           "use strict";
> 
> 
>           window.addEventListener( "load", function() {
>               adjustKommentarvorschlagLis();
> 
>           });
> 
> 
> 
>           function vorschlag_in_issue_notes_uebernehmen( t) {
>             var  inFd = document.getElementById("issue_notes");
>             if(  inFd != null ) {
>               if(     inFd.value == null ) {
>                         inFd.value = "";
>               }
>               else if(  inFd.value != "" ) {
>                         inFd.value += "\r\n\r\n";
>               }
>               inFd.value += decodeURIComponent( t);
>               inFd.focus();
>             }
>             return  false;
>           }
>         </script>
>         <ul class="kommentarvorschlag"  >
>           <% @issue&.project&.parent&.documents&.where( category_id: 67)&.each do |vd| %>
>             <%
>               li_prefix = ""
>               li_text   = vd.title
> 
>               dtPos = li_text.index " -- "
> 
>               if    dtPos
>                 li_prefix = li_text[ 0 .. (dtPos - 1) ]
>                 li_text   = li_text[ (dtPos + 4) .. ]
>               end
>             %>
> 
>             <li   li_prefix="<%= li_prefix %>"    title="<%= vd.description %>" >
>               <%= li_text %> <span class="atab_link" onclick="vorschlag_in_issue_notes_uebernehmen('<%= u vd.description %>');">&uuml;bernehmen</span>
>             </li>
>           <% end %>
>         <ul>

Dateien