Added ID to table, remove debug statement.

gh-pages
Mark Malek 2012-09-03 06:46:38 -04:00
parent 0ec4bd1de1
commit e71aaddbe9
2 changed files with 2 additions and 3 deletions

View File

@ -66,7 +66,7 @@ Some options include a fixed footer using the tables tfoot element or cloning th
<h2>Demo time!</h2>
<div id="tableBlock">
<table class="myTable">
<table id="demo" class="myTable">
<thead>
<tr>
<th>Committer</th>

View File

@ -2,7 +2,6 @@
$(document).ready(function() {
$('#tableBlock').getCommits();
console.log($('#tableBlock'));
});
$.fn.extend({
@ -40,7 +39,7 @@
.append('<td class="link"><a class="button" href="http://github.com' + aMessages[message].commit.url + '">View Details</a></td>');
}
$('#tableBlock > table.myTable').fixedHeaderTable({ height: '600', altClass: 'odd', footer: true, cloneHeadToFoot: true, themeClass: 'fancyTable' });
$('#demo').fixedHeaderTable({ height: '600', altClass: 'odd', footer: true, cloneHeadToFoot: true, themeClass: 'fancyTable' });
return self;
},