Skip to content

Instantly share code, notes, and snippets.

View lenntt's full-sized avatar

Lennart lenntt

View GitHub Profile
[
{
"keyword": "Feature",
"name": "a minimal test feature",
"line": 3,
"id": "a-minimal-test-feature",
"tags": [
{
"name": "@wip",
"line": 2
(function( $ ) {
$.fn.simulateDragDrop = function(options) {
return this.each(function() {
new $.simulateDragDrop(this, options);
});
};
$.simulateDragDrop = function(elem, options) {
this.options = options;
this.simulateEvent(elem, options);
};