Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions js/zoninator.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@ var zoninator = {};
, placeholder : 'ui-state-highlight'
, forcePlaceholderSize: true
//, handle: '.zone-post-handle'
// This helper function addresses #41 (Drag and Drop on Mobile Issue) and corrects the placement of the cloned sortable item on Chrome/Safari iOS
, helper : function(event, ui) {
var clone = $(ui).clone();
clone.css('position','absolute');
return clone.get(0);
}
});
}

Expand Down