- Non-text Content
- Audio-only and Video-only (Prerecorded)
- Captions (Prerecorded)
This app uses information about you and the events you are attending. The information is only displayed anonymously. This is a demo for a hack day, so feel free to submit information that's not accurate, and don't assume that the data shown is accurate at the moment.
I hereby claim:
To claim this, I am signing this object:
// A hastily thrown-together tool which replaces a field, with the class 'length-field' with a field that allows the user to choose their own units (mm, cm, m, km, in, ft, yd, mi), while saving the result in mm. | |
// The input group relies on Bootstrap for the layout at present. | |
// I'd really like to return to this at some point and neaten things up a bit. | |
$('.length-field').each(function(){ | |
var cur_unit = "mm"; | |
var cur_multiplier = 1; | |
var original_units = { | |
"mm": 1, | |
"cm": 10, |