Actualización

This commit is contained in:
Xes
2025-04-10 12:49:05 +02:00
parent 4aff98e77b
commit 1cdd00920f
9151 changed files with 1800913 additions and 0 deletions

View File

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