iframe-js-loader.js 467 B

1234567891011
  1. $(document).ready(function() {
  2. //get the path to mediaelement plugins
  3. var scripts = document.getElementsByTagName('script');
  4. var scriptPath = scripts[scripts.length-1].src;
  5. var basePath = scriptPath.substring(0, scriptPath.indexOf('/main/')+1) + 'web/assets/mediaelement/build/';
  6. $('video:not(.skip), audio:not(.skip)').mediaelementplayer({
  7. pluginPath: basePath,
  8. shimScriptAccess: 'always'
  9. // more configuration
  10. });
  11. });