/home/sharedstore/public_html/prestashop.sharedstore.ma/js/jquery/plugins
NameSizeModeActions
ajaxfileupload/-0755rm
alerts/-0755rm
autocomplete/-0755rm
bxslider/-0755rm
chosen/-0755rm
cluetip/-0755rm
fancybox/-0755rm
footable/-0755rm
footable-sort/-0755rm
growl/-0755rm
imgareaselect/-0755rm
jgrowl/-0755rm
jqzoom/-0755rm
jstree/-0755rm
select2/-0755rm
smartWizard/-0755rm
tabpane/-0755rm
thickbox/-0755rm
timepicker/-0755rm
treeview-categories/-0755rm
validate/-0755rm
index.php13190644editdlrm
jquery.autosize.js31770644editdlrm
jquery.chosen.js404370644editdlrm
jquery.colorpicker.js182630644editdlrm
jquery.cooki-plugin.js16980644editdlrm
jquery.dimensions.js25150644editdlrm
jquery.dragtable.js169150644editdlrm
jquery.easing.js49550644editdlrm
jquery.excanvas.js194150644editdlrm
jquery.fieldselection.js17960644editdlrm
jquery.flip.js117710644editdlrm
jquery.flot.js375540644editdlrm
jquery.highlight.js13640644editdlrm
jquery.hoverIntent.js16090644editdlrm
jquery.idTabs.js21490644editdlrm
jquery.ifxtransfer.js20180644editdlrm
jquery.jqminmax.js19550644editdlrm
jquery.jscroll.js150360644editdlrm
jquery.pngFix.js25720644editdlrm
jquery.scrollTo.js26760644editdlrm
jquery.serialScroll.js20130644editdlrm
jquery.sortable.js28720644editdlrm
jquery.tablednd.js121150644editdlrm
jquery.tablefilter.js19170644editdlrm
jquery.tagify.js38410644editdlrm
jquery.typewatch.js22980644editdlrm
jquery.validate-creditcard.js39020644editdlrm
jquery.validate.js210680644editdlrm
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/js/jquery/plugins/jquery.sortable.js (2872B)
/* * HTML5 Sortable jQuery Plugin * http://farhadi.ir/projects/html5sortable * * Copyright 2012, Ali Farhadi * Released under the MIT license. */ (function($) { var dragging, placeholders = $(); $.fn.sortable = function(options) { var method = String(options); options = $.extend({ connectWith: false }, options); return this.each(function() { if (/^enable|disable|destroy$/.test(method)) { var items = $(this).children($(this).data('items')).attr('draggable', method == 'enable'); if (method == 'destroy') { items.add(this).removeData('connectWith items') .off('dragstart.h5s dragend.h5s selectstart.h5s dragover.h5s dragenter.h5s drop.h5s'); } return; } var isHandle, index, items = $(this).children(options.items); var placeholder = $('<' + (/^ul|ol$/i.test(this.tagName) ? 'li' : 'div') + ' class="sortable-placeholder">'); items.find(options.handle).mousedown(function() { isHandle = true; }).mouseup(function() { isHandle = false; }); $(this).data('items', options.items) placeholders = placeholders.add(placeholder); if (options.connectWith) { $(options.connectWith).add(this).data('connectWith', options.connectWith); } items.attr('draggable', 'true').on('dragstart.h5s', function(e) { if (options.handle && !isHandle) { return false; } isHandle = false; var dt = e.originalEvent.dataTransfer; dt.effectAllowed = 'move'; dt.setData('Text', 'dummy'); index = (dragging = $(this)).addClass('sortable-dragging').index(); }).on('dragend.h5s', function() { if (!dragging) { return; } dragging.removeClass('sortable-dragging').show(); placeholders.detach(); if (index != dragging.index()) { dragging.parent().trigger('sortupdate', {item: dragging, start_index: index, end_index: dragging.index()}); } dragging = null; }).not('a[href], img').on('selectstart.h5s', function() { this.dragDrop && this.dragDrop(); return false; }).end().add([this, placeholder]).on('dragover.h5s dragenter.h5s drop.h5s', function(e) { if (!items.is(dragging) && options.connectWith !== $(dragging).parent().data('connectWith')) { return true; } if (e.type == 'drop') { e.stopPropagation(); placeholders.filter(':visible').after(dragging); dragging.trigger('dragend.h5s'); return false; } e.preventDefault(); e.originalEvent.dataTransfer.dropEffect = 'move'; if (items.is(this)) { if (options.forcePlaceholderSize) { placeholder.height(dragging.outerHeight()); } dragging.hide(); $(this)[placeholder.index() < $(this).index() ? 'after' : 'before'](placeholder); placeholders.not(placeholder).detach(); } else if (!placeholders.is(this) && !$(this).children(options.items).length) { placeholders.detach(); $(this).append(placeholder); } return false; }); }); }; })(jQuery);