Sha256: 1c5484ff9f72d3e04fdc42fc02186f457ad061a49ffcb214d5aa5c6509dae2ae

Contents?: true

Size: 1.62 KB

Versions: 4

Compression:

Stored size: 1.62 KB

Contents

.container
  %section.content-header.index-header
    %h1{ style: 'display: inline-block' }
      = t("keppler.actions.views")
  .row
    .col-lg-6
      .box.slice-box.box-preview.hidden-xs
        .box-header.with-border
          %h3.box-title= t('keppler.actions.preview')
          .box-tools.pull-right#tools
            %i.bx.bx-desktop#lg
            %i.bx.bx-tab#md
            %i.bx.bx-mobile#xs
            %i.bx.bx-revision#reload
        .box-body.box-body-no-padding.hidden-xs#box-body-bg
          #box-body
            %iframe.preview-iframe#preview.hidden-xs{ src: "#{request.base_url}" }
    .col-lg-6
      %section.content-actions
        .add
          = link_to "#", class: "btn-add", "data-toggle": "modal", "data-target": "#new-view" do
            +
            = t('keppler.actions.new_view')
          = link_to admin_frontend_views_refresh_path, remote: true, class: "btn btn-secondary" do
            %i.bx.bx-revision
            = t('keppler.actions.refresh')
      #views-listing
        = render 'views_listing', views: @views
= render 'new_view'

:javascript
  $(document).on("turbolinks:load",function(){
    $(document).ready(function() {
      $('#xs').click(function() {
        $('#box-body').animate({ 'width': '35%' }, 300)
      })

      $('#md').click(function() {
        $('#box-body').animate({ 'width': '70%' }, 300)
      })

      $('#lg').click(function() {
        $('#box-body').animate({ 'width': '100%' }, 300)
      })

      $('#reload').click(function() {
        var url = document.getElementById("preview").contentWindow.location.href
        $('iframe').attr('src', url)
      })
    });
  });

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
keppler-2.1.22 installer/core/rockets/keppler_frontend/app/views/keppler_frontend/admin/views/index.html.haml
keppler-2.1.21 installer/core/rockets/keppler_frontend/app/views/keppler_frontend/admin/views/index.html.haml
keppler-2.1.20 installer/core/rockets/keppler_frontend/app/views/keppler_frontend/admin/views/index.html.haml
keppler-2.1.19 installer/core/rockets/keppler_frontend/app/views/keppler_frontend/admin/views/index.html.haml