updated dist

This commit is contained in:
vieron
2012-08-08 23:36:59 +02:00
parent d78bd254bd
commit c047153f05
2 changed files with 5 additions and 5 deletions
+4 -4
View File
@@ -671,10 +671,10 @@
//jQuery adapter
$.fn.draggable = function ( options ) {
$.fn.drag = function ( options ) {
return this.each(function () {
if (!$.data(this, 'draggable')) {
$.data(this, 'draggable', new Draggable( this, options ));
if (!$.data(this, 'drag')) {
$.data(this, 'drag', new Draggable( this, options ));
}
});
};
@@ -1087,7 +1087,7 @@
}, 60)
});
this.drag_api = this.$el.draggable(draggable_options).data('draggable');
this.drag_api = this.$el.drag(draggable_options).data('draggable');
return this;
};
+1 -1
View File
File diff suppressed because one or more lines are too long