Squashed commit of the following:

commit 17df3b5d05
Author: Mark Malek <markmmalek@me.com>
Date:   Mon May 2 18:32:36 2011 -0400

    Updated Readme

    Signed-off-by: Mark Malek <markmmalek@me.com>

commit 24d094417e
Author: Mark Malek <markmmalek@me.com>
Date:   Mon May 2 16:07:46 2011 -0400

    Bug fix:

    - complete callback using settings not options.

    Signed-off-by: Mark Malek <markmmalek@me.com>

Signed-off-by: Mark Malek <markmmalek@me.com>
master
Mark Malek 2011-05-02 18:56:04 -04:00
parent f70e957672
commit 2e366aaba2
2 changed files with 17 additions and 3 deletions

18
README
View File

@ -1,2 +1,16 @@
Version 1.2 (Still in testing)
- jquery.fixedheadertable.js
Version 1.2
- jquery.fixedheadertable.js
Methods:
show - .fixedHeaderTable('show')
hide - .fixedHeaderTable('hide')
destroy - .fixedHeaderTable('destroy')
Options:
width - Number - Default: 100%
height - Number - Default: 100%
footer - Boolean - Default: false
cloneHeadToFoot - Boolean - Default: false
autoShow - Boolean - Default: true
altClass - String - Default: none
themeClass - String - Default: none

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');
}