Commit b4e56414 authored by Murukesh Mohanan's avatar Murukesh Mohanan

update table

parent 7b0689bd
Gemfile.lock
<table id="cann-table"> <table id="cann-table">
<thead> <th> Pts </th> <th> Clubs (GD) </th> </thead> <thead> <th> Pts </th> <th> Clubs (GD) </th> </thead>
<tr class="cann-row-1"> <tr class="cann-row-1">
<td class="cann-point"> 0 </td> <td class="cann-point"> 9 </td>
<td class="cann-clubs"> <td class="cann-clubs">
<span class="club-name"> Arsenal (0) </span> <span class="club-name"> Manchester City (8) </span>
<span class="club-name"> Aston Villa (0) </span> </td>
<span class="club-name"> Bournemouth (0) </span> </tr>
<span class="club-name"> Chelsea (0) </span> <tr class="cann-row-1">
<span class="club-name"> Crystal Palace (0) </span> <td class="cann-point"> 8 </td>
<span class="club-name"> Everton (0) </span> <td class="cann-clubs">
<span class="club-name"> Leicester City (0) </span> </td>
<span class="club-name"> Liverpool (0) </span> </tr>
<span class="club-name"> Manchester City (0) </span> <tr class="cann-row-1">
<span class="club-name"> Manchester United (0) </span> <td class="cann-point"> 7 </td>
<span class="club-name"> Newcastle United (0) </span> <td class="cann-clubs">
<span class="club-name"> Leicester City (3) </span>
<span class="club-name"> Manchester United (2) </span>
</td>
</tr>
<tr class="cann-row-2">
<td class="cann-point"> 6 </td>
<td class="cann-clubs">
<span class="club-name"> Crystal Palace (2) </span>
<span class="club-name"> Liverpool (2) </span>
</td>
</tr>
<tr class="cann-row-2">
<td class="cann-point"> 5 </td>
<td class="cann-clubs">
<span class="club-name"> Swansea City (2) </span>
</td>
</tr>
<tr class="cann-row-2">
<td class="cann-point"> 4 </td>
<td class="cann-clubs">
<span class="club-name"> Everton (1) </span>
<span class="club-name"> Norwich City (0) </span> <span class="club-name"> Norwich City (0) </span>
<span class="club-name"> Southampton (0) </span> <span class="club-name"> Chelsea (-2) </span>
<span class="club-name"> Stoke City (0) </span> </td>
<span class="club-name"> Sunderland (0) </span> </tr>
<span class="club-name"> Swansea City (0) </span> <tr class="cann-row-1">
<span class="club-name"> Tottenham Hotspur (0) </span> <td class="cann-point"> 3 </td>
<span class="club-name"> Watford (0) </span> <td class="cann-clubs">
<span class="club-name"> West Bromwich Albion (0) </span>
<span class="club-name"> West Ham United (0) </span> <span class="club-name"> West Ham United (0) </span>
<span class="club-name"> Watford (0) </span>
<span class="club-name"> Bournemouth (-1) </span>
<span class="club-name"> Arsenal (-1) </span>
<span class="club-name"> Aston Villa (-1) </span>
</td>
</tr>
<tr class="cann-row-1">
<td class="cann-point"> 2 </td>
<td class="cann-clubs">
<span class="club-name"> Tottenham Hotspur (-1) </span>
<span class="club-name"> Stoke City (-1) </span>
<span class="club-name"> Newcastle United (-2) </span>
<span class="club-name"> Southampton (-3) </span>
</td>
</tr>
<tr class="cann-row-1">
<td class="cann-point"> 1 </td>
<td class="cann-clubs">
<span class="club-name"> Sunderland (-4) </span>
<span class="club-name"> West Bromwich Albion (-4) </span>
</td> </td>
</tr> </tr>
</table> </table>
<span id="cann-gen-note"> Generated on Monday, 27 July 2015 at 06:32 IST. </span> <span id="cann-gen-note"> Generated on Monday, 24 August 2015 at 06:32 IST. </span>
/* Wrap stuff in your own class/object to avoid polluting
* the global namespace. Then again, we must check if our
* name of choice is in use.
*/
if (!MuruJS) {
// Create the empty object.
var MuruJS = {};
// The snarky comment is hidden by default.
MuruJS.commentVisible = false;
// When this function is called, reverse the display style of
// le snarky comment.
MuruJS.bodyColor = "#AAA";
MuruJS.displayComment = function () {
item = document.getElementById('contact-comment');
item.style.display = MuruJS.commentVisible ? 'none' : 'block';
MuruJS.commentVisible = !MuruJS.commentVisible;
return true;
}
// Add the comment visibility controller to the various events as handler.
// Call this after the body, so that the DOM is loaded. document.load
// doesn't work well. :( I'm doing something wrong.
MuruJS.init = function () {
document.getElementById("contact-comment").parentNode.parentNode.onmouseover = MuruJS.displayComment;
document.getElementById("contact-comment").parentNode.parentNode.onmouseout = MuruJS.displayComment;
document.getElementById("contact-comment").parentNode.parentNode.onclick = MuruJS.displayComment;
return true;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment