Sha256: 6b2977ffde9d22a02437c2be6da262fff649bc43738c2aea375f1ffa6848553d
Contents?: true
Size: 848 Bytes
Versions: 31
Compression:
Stored size: 848 Bytes
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 #------------------------------------------------------------------------------ (($) -> # The multiselect tag list has listeners to load/remove fieldsets related to tags #---------------------------------------------------------------------------- $(document).on 'select2-selecting', "[name*='tag_list']", (event) -> url = $(this).data('url') asset_id = $(this).data('asset-id') $.get(url, { tag: event.val asset_id: asset_id collapsed: "no" }) $(document).on 'select2-removing', "[name*='tag_list']", (event) -> $("#field_groups div[data-tag='" + event.val + "']").remove() ) jQuery
Version data entries
31 entries across 31 versions & 2 rubygems