Sha256: caf857c9b40073571356fd5dd23f129afc55aecd948a48d6bfcd322524ead0ed

Contents?: true

Size: 1.04 KB

Versions: 21

Compression:

Stored size: 1.04 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
#------------------------------------------------------------------------------
(($) ->
  window.crm ||= {}

  crm.init_sortables = ->
    $('[data-sortable]').each ->
      $el = $(this)

      checkEmpty = ->
        $el.children('.empty').toggle($el.sortable('toArray').length is 1)

      $el.sortable(
        forcePlaceholderSize: true
        connectWith: $el.data('sortable-connect-with')
        handle: $el.data('sortable-handle')
        create: checkEmpty
        update: ->
          ids = []
          for dom_id in $el.sortable('toArray')
            ids.push dom_id.replace(/[^\d]/g, '')
          data = {}
          data[$el.attr('id')] = ids
          $.post($el.attr('data-sortable'), data)
          checkEmpty()
      )

  $(document).ready ->
    crm.init_sortables()

  $(document).ajaxComplete ->
    crm.init_sortables()

) jQuery

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
fat_free_crm-0.22.1 app/assets/javascripts/crm_sortable.js.coffee
fat_free_crm-0.22.0 app/assets/javascripts/crm_sortable.js.coffee
fat_free_crm-0.21.0 app/assets/javascripts/crm_sortable.js.coffee
fat_free_crm-0.20.1 app/assets/javascripts/crm_sortable.js.coffee
fat_free_crm-0.20.0 app/assets/javascripts/crm_sortable.js.coffee
fat_free_crm-0.19.2 app/assets/javascripts/crm_sortable.js.coffee
fat_free_crm-0.19.0 app/assets/javascripts/crm_sortable.js.coffee
fat_free_crm-0.18.2 app/assets/javascripts/crm_sortable.js.coffee
fat_free_crm-0.15.2 app/assets/javascripts/crm_sortable.js.coffee
fat_free_crm-0.16.4 app/assets/javascripts/crm_sortable.js.coffee
fat_free_crm-0.17.3 app/assets/javascripts/crm_sortable.js.coffee
fat_free_crm-0.18.1 app/assets/javascripts/crm_sortable.js.coffee
fat_free_crm-0.18.0 app/assets/javascripts/crm_sortable.js.coffee
fat_free_crm-0.15.1 app/assets/javascripts/crm_sortable.js.coffee
fat_free_crm-0.16.3 app/assets/javascripts/crm_sortable.js.coffee
fat_free_crm-0.17.2 app/assets/javascripts/crm_sortable.js.coffee
fat_free_crm-0.16.2 app/assets/javascripts/crm_sortable.js.coffee
fat_free_crm-0.17.1 app/assets/javascripts/crm_sortable.js.coffee
fat_free_crm-0.16.1 app/assets/javascripts/crm_sortable.js.coffee
fat_free_crm-0.16.0 app/assets/javascripts/crm_sortable.js.coffee