Skip to content

Commit

Permalink
Merge branch 't/14559'
Browse files Browse the repository at this point in the history
  • Loading branch information
mlewand committed Mar 31, 2016
2 parents e282a8e + dd580dc commit c1fc9a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/table/dialogs/table.js
Expand Up @@ -157,7 +157,7 @@
// Should we make a <thead>?
var headers = info.selHeaders;
if ( !table.$.tHead && ( headers == 'row' || headers == 'both' ) ) {
var thead = table.findOne( 'thead' );
var thead = table.getElementsByTag( 'thead' ).getItem( 0 );
tbody = table.getElementsByTag( 'tbody' ).getItem( 0 );
var theRow = tbody.getElementsByTag( 'tr' ).getItem( 0 );

Expand Down

0 comments on commit c1fc9a9

Please sign in to comment.