Larger Mission Update

By Glenn Last update Jun 12, 2007 — Installed 56 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
// ==UserScript==
// @name           Larger Mission Update
// @namespace      http://www.eklo.com/
// @description    Makes the Mission Update section on the Space Shuttle page larger for easier reading.
// @include        http://www.space.com/spaceshuttle/
// ==/UserScript==

var muDivs, muDiv;

muDivs = document.evaluate(
"//div[@class='missionupdate']",
document,
null,
XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,
null);

if ( muDivs.snapshotLength == 1 )
{
    muDiv = muDivs.snapshotItem(0);
    muDiv.style.height = '800px';
}
else
{
    alert('expected one (1) missionupdate section, found: ' + muDivs.snapshotLength);
}