Return the heading value on HTML export

HTML export was erroneously not returning the heading value.

Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Miika Turkia 2014-07-28 16:55:37 +03:00 committed by Dirk Hohndel
parent bfc919b1c3
commit a562dd0e12

View file

@ -777,7 +777,7 @@ function get_event_value(event)
return 'He: ' + he + ' - O2: ' + o2;
}
if (event.type == 23) { // heading
event.value;
return event.value;
}
return '-';
}