- complete callback using settings not options.

Signed-off-by: Mark Malek <markmmalek@me.com>
master
Mark Malek 2011-05-02 16:07:46 -04:00
parent f70e957672
commit 24d094417e
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@
if ( helpers._isTable($self) ) {
methods.setup.apply(this, Array.prototype.slice.call(arguments, 1));
$.isFunction(options.complete) && options.complete.call(this);
$.isFunction(settings.complete) && settings.complete.call(this);
} else {
$.error('Invalid table mark-up');
}