Sha256: 4642b1236e7b9fc51320a2b99d8103a7e58cc996a6fb4270a456006cb80bc77f

Contents?: true

Size: 859 Bytes

Versions: 14

Compression:

Stored size: 859 Bytes

Contents

$(document).ready ->
  # Used in Changes. For each recorded change if there is more than two changed fields
  #  hide all but the first two and provide a link to show the rest.
  onClickMoreLink = (event) ->
    link = $(event.target)
    # Show all the list items
    link.siblings('li').show()
    # Hide the show more link
    link.hide()
    # Prevent the page from scrolling to the top
    false

  $('ul.expandable_list').each ->
    ul = $(this)
    lis = ul.children('li')
    # If there are more than two list items
    if lis.length > 2
      # Show only the first two initially
      lis.slice(2).hide()

      # Create a link
      show_more_link = $('<a class="show_more_link" href="#">Expand</a>')
      # Add a click event to the link
      show_more_link.click(onClickMoreLink)
      # Add the link to the DOM
      ul.append(show_more_link)

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
biola_wcms_components-0.25.4 app/assets/javascripts/components/list/expandable_list.js.coffee
biola_wcms_components-0.25.3 app/assets/javascripts/components/list/expandable_list.js.coffee
biola_wcms_components-0.25.2 app/assets/javascripts/components/list/expandable_list.js.coffee
biola_wcms_components-0.25.1 app/assets/javascripts/components/list/expandable_list.js.coffee
biola_wcms_components-0.25.0 app/assets/javascripts/components/list/expandable_list.js.coffee
biola_wcms_components-0.24.3 app/assets/javascripts/components/list/expandable_list.js.coffee
biola_wcms_components-0.24.2 app/assets/javascripts/components/list/expandable_list.js.coffee
biola_wcms_components-0.24.1 app/assets/javascripts/components/list/expandable_list.js.coffee
biola_wcms_components-0.24.0 app/assets/javascripts/components/list/expandable_list.js.coffee
biola_wcms_components-0.23.0 app/assets/javascripts/components/list/expandable_list.js.coffee
biola_wcms_components-0.22.0 app/assets/javascripts/components/list/expandable_list.js.coffee
biola_wcms_components-0.21.0 app/assets/javascripts/components/list/expandable_list.js.coffee
biola_wcms_components-0.20.0 app/assets/javascripts/components/list/expandable_list.js.coffee
biola_wcms_components-0.19.0 app/assets/javascripts/components/list/expandable_list.js.coffee