Sha256: 595c29594df8802d036b80664b2df8d3ca9f35637c9fb1afb8ed5fa81c7f971e

Contents?: true

Size: 1.25 KB

Versions: 7

Compression:

Stored size: 1.25 KB

Contents

<nav class="navbar navbar-default promethee-editor__navbar">
  <div class="container-fluid">
    <div class="navbar-header promethee-editor__icon">
      <div class="navbar-brand"><%= File.read(__dir__ + '/../../../../assets/images/icon-promethee.svg').html_safe %></div>
    </div>
    <div id="navbar">
      <ul class="nav navbar-nav navbar-right">
        <li ng-click="action.toggle('move')" ng-class="{active: action.is('move')}"><a><%= fa_icon :arrows %></a></li>

        <li
          ng-show="action.is('preview')"
          ng-repeat="device in ['desktop', 'tablet', 'mobile']"
          ng-click="preview.set(device)"
          ng-class="{active: preview.is(device)}"
        >
          <a><i class="fa fa-{{device}}"></i></a>
        </li>

        <li ng-click="action.toggle('preview')" ng-class="{active: action.is('preview')}">
          <a ng-hide="action.is('preview')"><%= fa_icon :eye %></a>
          <a ng-show="action.is('preview')"><%= fa_icon 'eye-slash' %></a>
        </li>

        <li ng-click="fullscreen.toggle()" ng-class="{active: fullscreen.enabled}">
          <a ng-show="fullscreen.disabled"><%= fa_icon :expand %></a>
          <a ng-show="fullscreen.enabled"><%= fa_icon :compress %></a>
        </li>
      </ul>
    </div>
  </div>
</nav>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
promethee-1.0.20 app/views/promethee/edit/shared/_navbar.html.erb
promethee-1.0.19 app/views/promethee/edit/shared/_navbar.html.erb
promethee-1.0.18 app/views/promethee/edit/shared/_navbar.html.erb
promethee-1.0.17 app/views/promethee/edit/shared/_navbar.html.erb
promethee-1.0.16 app/views/promethee/edit/shared/_navbar.html.erb
promethee-1.0.15 app/views/promethee/edit/shared/_navbar.html.erb
promethee-1.0.14 app/views/promethee/edit/shared/_navbar.html.erb