Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
titleInit
var start = function(VIQEO) {
  // Here will be setup code
}
if (!window.VIQEO) {
  window.onViqeoLoad = start;
} else {
  start(VIQEO);
}


You have to request a function when VIQEO is initialisingput the code below inside of function to setup Always-on-top (Fly) player:

Code Block
languagejs
titleInit
VIQEO.setConfig({ flyPlayer: true }) 

...