Hi There,
Thanks for this media player module it's helping us immensely on our recently launched website http://irissfm.iriss.org.uk - I'm in the process of creating a custom template via the suggested route of a custom module which is going well with the exception of creating a horizontal volume control bar.

Are there pointers or examples to reconfigure the simpleblack template into this configuration. If it's helpful for others I can post the custom module code once I'm finished.

Comments

atomicjeep’s picture

I've located the following in /mediafront/players/osmplayer/player/minplayer/src/minplayer.controller.js which seems to do the trick, just needs a little styling.

this.volumeBar = this.elements.volume.slider({
      range: 'min',
      orientation: 'vertical'
    });
  }

changed to…

this.volumeBar = this.elements.volume.slider({
      range: 'min',
      orientation: 'horizontal'
    });
  }

Is there an recommended way of overriding this setting (in my custom template module) without altering the module code?

travist’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.