Child: [d971b6] (diff)

Download this file

screenshots.js    11 lines (9 with data), 302 Bytes

1
2
3
4
5
6
7
8
9
$(function() {
$('.sortable').sortable({cursor: 'move'}).bind('sortupdate', function(e) {
var params = {'_session_id': $.cookie('_session_id')};
$(this).find('.screenshot').each(function(i) {
params[$(this).data('ss-id')] = i;
});
$.post('sort_screenshots', params);
});
});