cirandas.net

ref: master

plugins/site_tour/public/edit_tour_block.js


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
jQuery(document).ready(function(){
  jQuery('#edit-tour-block').on('click', '.add-item', function() {
    var container = jQuery(this).closest('.list-items');
    var new_action = container.find('#new-template>li').clone();
    new_action.show();
    container.find('.droppable-items').append(new_action);
  });

  jQuery('#edit-tour-block').on('click', '.delete-tour-block-item', function() {
    jQuery(this).parent().parent().remove();
    return false;
  });

  jQuery("#edit-tour-block .droppable-items").sortable({
    revert: true,
    axis: "y"
  });
});