Sha256: 6605848e7efa443b6a925975f5138bc5b6d53a8bf84ae1413c99075d402dec44

Contents?: true

Size: 1.39 KB

Versions: 4

Compression:

Stored size: 1.39 KB

Contents

# Copyright (c) 2008-2013 Michael Dvorkin and contributors.
#
# Fat Free CRM is freely distributable under the terms of MIT license.
# See MIT-LICENSE file or http://www.opensource.org/licenses/mit-license.php
#------------------------------------------------------------------------------
(($) ->
  class @Lists
    constructor: (@templates = {}) ->

    show_save_form: ->
      $(".save_list").show()
      $('.save_list #list_name').focus()

    hide_save_form: ->
      $(".save_list").hide()

  $(document).ready ->
    lists = new Lists()

    $(".show_lists_save_form").live "click", ->
      lists.show_save_form()
      $(".show_lists_save_form").hide()
      false

    $(".hide_lists_save_form").live "click", ->
      lists.hide_save_form()
      $(".show_lists_save_form").show()
      false

    $("input#save_list").live "click", ->
      # Set value of hidden list_url field to serialized search form
      $("#list_url").val(window.location.pathname + '?' + $('form.ransack_search').serialize())
      true

    # When mouseover on li, change asset icons to delete buttons
    $("#lists li").live "mouseover", ->
      img_el = $(this).find('.delete_on_hover img')
      img_el.attr('src', "/assets/delete.png")
    $("#lists li").live "mouseout", ->
      img_el = $(this).find('.delete_on_hover img')
      img_el.attr('src', "/assets/tab_icons/" + img_el.data('controller') + "_active.png")

) jQuery

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
fat_free_crm-0.12.3 app/assets/javascripts/lists.js.coffee
fat_free_crm-0.12.2 app/assets/javascripts/lists.js.coffee
fat_free_crm-0.12.1 app/assets/javascripts/lists.js.coffee
fat_free_crm-0.12.0 app/assets/javascripts/lists.js.coffee