Sha256: 11a8a92b69f2b0cf9338501e4539b612627f7662f63848c9b3252130f3378f03

Contents?: true

Size: 1.12 KB

Versions: 3

Compression:

Stored size: 1.12 KB

Contents

.stable.table-scroll{ html_options }
  .scrollbars
    .scroll-vertical
      %div
    .scroll-horizontal
      %div
    .mask
      .c-left
        .t-header
          - (0..options[:fixed_rows]-1).each do |index|
            .t-row{row_wrapper_html_options[index]}
              %div{data[index][0][:html_options]}
                = data[index][0][:value]
        .t-body.vertical
          - data.enum_drop_with_index(options[:fixed_rows]) do |row, index|
            .t-row{row_wrapper_html_options[index]}
              %div{row[0][:html_options]}
                = row[0][:value]
      .c-right
        .t-header.horizontal
          - (0..options[:fixed_rows]-1).each do |index|
            .t-row{row_wrapper_html_options[index]}
              - data[index].enum_drop(1) do |cell|
                %div{cell[:html_options]}
                  = cell[:value]
        .t-body.vertical.horizontal
          - data.enum_drop_with_index(options[:fixed_rows]) do |row, index|
            .t-row{row_wrapper_html_options[index]}
              - row.enum_drop(1) do |cell|
                %div{cell[:html_options]}
                  = cell[:value]

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
stable-rails-0.0.5 app/views/stable/_stable.haml
stable-rails-0.0.4 app/views/stable/_stable.haml
stable-rails-0.0.3 app/views/stable/_stable.haml