updated docs and dist

This commit is contained in:
vieron
2012-07-24 10:35:07 +02:00
parent 443d0fbc29
commit 62caa4abf7
9 changed files with 164 additions and 164 deletions
+7 -7
View File
@@ -150,7 +150,7 @@
this.player_min_left = 0 + this.options.offset_left;
this.init();
};
}
var fn = Draggable.prototype;
@@ -177,7 +177,7 @@
fn.drag_handler = function(e) {
if (e.which !== 1) {
return false;
};
}
var self = this;
var first = true;
@@ -203,7 +203,7 @@
if (self.is_dragging == true) {
throttle(self.on_dragmove.call(self, mme), 130);
};
}
return false;
@@ -231,7 +231,7 @@
this.options.start.call(this.$player, e, {
helper: this.helper ? this.$helper : this.$player
});
};
}
return false;
};
@@ -251,12 +251,12 @@
}else if(left < this.player_min_left) {
left = this.player_min_left;
}
};
}
return {
left: left,
top: top
}
};
};
@@ -293,7 +293,7 @@
'left': offset.left,
'top': offset.top
}
}
};
if (this.options.stop) {
this.options.stop.call(this.$player, e, ui);