MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
Shornstein (talk | contribs) No edit summary |
Shornstein (talk | contribs) No edit summary |
||
| Line 12: | Line 12: | ||
{ | { | ||
var nBlLength = Number(document.getElementById("mw-bllength").value); | var nBlLength = Number(document.getElementById("mw-bllength").value); | ||
nBlLength = nBlLength * Math.sin(6); | nBlLength = nBlLength * Math.sin(6 * Math.PI / 180); | ||
nBlLength = Math.round(nBlLength); | |||
$('#mw-result').html("Distance: <b>" + nBlLength + "mm</b>"); | $('#mw-result').html("Distance: <b>" + nBlLength + "mm</b>"); | ||
} | } | ||
}; | }; | ||
Revision as of 13:13, 3 June 2020
/* Any JavaScript here will be loaded for all users on every page load. */
var textinput = null;
$(function () {
textinput = $('#mw-bllength');
$('#mw-beastx-pitchcalc').html('<input type="button" id="myButton" onclick="myFunction()" value="Calculate">');
}());
function myFunction() {
if (textinput != null)
{
var nBlLength = Number(document.getElementById("mw-bllength").value);
nBlLength = nBlLength * Math.sin(6 * Math.PI / 180);
nBlLength = Math.round(nBlLength);
$('#mw-result').html("Distance: <b>" + nBlLength + "mm</b>");
}
};