updated docs and dist

This commit is contained in:
vieron
2012-07-19 11:16:29 +02:00
parent b83d993d4b
commit 15a2dba98e
8 changed files with 349 additions and 202 deletions

View File

@ -127,7 +127,7 @@
this.original_coords = this.get();
};
fn.set = function(update) {
fn.set = function() {
var el = this.el;
if (el) {
this.data = el.offset();
@ -159,7 +159,7 @@
var new_data = $.extend(this.data, data);
this.data = new_data;
}
this.set(true);
this.set();
return this;
};