No timeline on mouseout · Flowplayer

No minimal timeline on mouseout

<head/>

<style>

/* do not show minimal timeline on mouseout */
.flowplayer.is-mouseout .fp-timeline {
   height: 0;
}

This is the CSS programming equivalent to the following JavaScript instruction:

flowplayer(function (api, root) {
   root.hover(function () {
      $(".fp-timeline", root).css({
         height: /enter/.test(e.type) ? 10 : 0
      });
   });
});