aboutsummaryrefslogtreecommitdiff
path: root/static/globals.js
diff options
context:
space:
mode:
Diffstat (limited to 'static/globals.js')
-rw-r--r--static/globals.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/static/globals.js b/static/globals.js
index c414fc5b..6efba94f 100644
--- a/static/globals.js
+++ b/static/globals.js
@@ -324,6 +324,21 @@ class ComponentBlock extends ComponentVEvent {
constructor () {
super();
}
+
+ redraw (data) {
+ super.redraw(data);
+
+ let p;
+ if ((p = data.getProperty('dtstart'))) {
+ this.style.top = date_to_percent(p, 1) + "%";
+ console.log('dtstart', p);
+ }
+ if ((p = data.getProperty('dtend'))) {
+ this.style.height = 'unset';
+ console.log('dtend', p);
+ this.style.bottom = (100 - date_to_percent(p, 1)) + "%";
+ }
+ }
}
window.addEventListener('load', function () {