Sha256: 13f544883a3335d836619545136beb5749dfcc7be4372e7b0a87bd7b1dd90608

Contents?: true

Size: 820 Bytes

Versions: 24

Compression:

Stored size: 820 Bytes

Contents

.carousel.slide{ html_options }
  - if slides.count >= 2
    -# Indicators
    %ol.carousel-indicators
      - slides.each_with_index do |slide, index|
        %li{data: { target: '#' + id, slide_to: index }}

  -# Wrapper for slides
  .carousel-inner{ role: 'listbox' }
    - slides.each_with_index do |slide, index|
      %div{ class: (index == 0) ? 'item active' : 'item' }
        = slide

  - if slides.count >= 2
    -# Controls
    %a.left.carousel-control{ href: '#' + id, role: 'button', data: { slide: 'prev' } }
      = icon 'chevron-left'
      .sr-only Previous
    %a.right.carousel-control{ href: '#' + id, role: 'button', data: { slide: 'next' } }
      = icon 'chevron-right'
      .sr-only Next

- add_footer_javascript do
  :javascript
    $(function() {
      $('##{id}.carousel').carousel();
    });

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
bootstrap_leather-0.10.14 app/views/bootstrap_leather/carousels/_carousel.html.haml
bootstrap_leather-0.10.13 app/views/bootstrap_leather/carousels/_carousel.html.haml
bootstrap_leather-0.10.11 app/views/bootstrap_leather/carousels/_carousel.html.haml
bootstrap_leather-0.10.10 app/views/bootstrap_leather/carousels/_carousel.html.haml
bootstrap_leather-0.10.9 app/views/bootstrap_leather/carousels/_carousel.html.haml
bootstrap_leather-0.10.8 app/views/bootstrap_leather/carousels/_carousel.html.haml
bootstrap_leather-0.10.7 app/views/bootstrap_leather/carousels/_carousel.html.haml
bootstrap_leather-0.10.6 app/views/bootstrap_leather/carousels/_carousel.html.haml
bootstrap_leather-0.10.5 app/views/bootstrap_leather/carousels/_carousel.html.haml
bootstrap_leather-0.10.4 app/views/bootstrap_leather/carousels/_carousel.html.haml
bootstrap_leather-0.9.4 app/views/bootstrap_leather/_carousel.html.haml
bootstrap_leather-0.9.3 app/views/bootstrap_leather/_carousel.html.haml
bootstrap_leather-0.9.2 app/views/bootstrap_leather/_carousel.html.haml
bootstrap_leather-0.9.1 app/views/bootstrap_leather/_carousel.html.haml
bootstrap_leather-0.9.0 app/views/bootstrap_leather/_carousel.html.haml
bootstrap_leather-0.8.8 app/views/bootstrap_leather/_carousel.html.haml
bootstrap_leather-0.8.7 app/views/bootstrap_leather/_carousel.html.haml
bootstrap_leather-0.8.6 app/views/bootstrap_leather/_carousel.html.haml
bootstrap_leather-0.8.5 app/views/bootstrap_leather/_carousel.html.haml
bootstrap_leather-0.8.4 app/views/bootstrap_leather/_carousel.html.haml