Skip to content
Extraits de code Groupes Projets
Sélectionner une révision Git
  • 906877caf84a5e44b96f464a8f38eb17b1427d4d
  • master par défaut protégée
  • dev-deurstann-3
  • dev-deurstann-2
  • dev-kubat
  • dev-deurstann
  • dev-sting
7 résultats

buttons.ejs

Blame
  • buttons.ejs 400 o
    <%# vim: ts=4 syntax=html
        The buttons for the menubar at the top of the window %>
    <% buttons.forEach(function(btn){ %>
    <button
        id="<%= btn.id %>" type="button"
        class="btn btn-<%= type %> p-2 bd-highlight"
        data-toggle="tooltip" data-placement="bottom" title="<%= btn.tooltip %>"
        style="-webkit-app-region: no-drag">
            <i class="fas fa-<%= btn.name %>"></i>
    </button>
    <% })%>