2013-11-15 07:52:09 +01:00
|
|
|
/* global mejs, _wpmejsSettings */
|
2015-09-20 05:17:24 +02:00
|
|
|
(function( window, $ ) {
|
|
|
|
|
|
|
|
window.wp = window.wp || {};
|
|
|
|
|
2013-03-16 06:25:44 +01:00
|
|
|
// add mime-type aliases to MediaElement plugin support
|
|
|
|
mejs.plugins.silverlight[0].types.push('video/x-ms-wmv');
|
|
|
|
mejs.plugins.silverlight[0].types.push('audio/x-ms-wma');
|
|
|
|
|
2015-09-20 05:17:24 +02:00
|
|
|
function wpMediaElement() {
|
2013-08-01 15:15:14 +02:00
|
|
|
var settings = {};
|
|
|
|
|
2015-09-20 05:17:24 +02:00
|
|
|
/**
|
|
|
|
* Initialize media elements.
|
|
|
|
*
|
|
|
|
* Ensures media elements that have already been initialized won't be
|
|
|
|
* processed again.
|
|
|
|
*
|
|
|
|
* @since 4.4.0
|
|
|
|
*/
|
|
|
|
function initialize() {
|
|
|
|
if ( typeof _wpmejsSettings !== 'undefined' ) {
|
|
|
|
settings = _wpmejsSettings;
|
|
|
|
}
|
2014-05-11 03:28:15 +02:00
|
|
|
|
2015-09-20 05:17:24 +02:00
|
|
|
settings.success = settings.success || function (mejs) {
|
|
|
|
var autoplay, loop;
|
|
|
|
|
|
|
|
if ( 'flash' === mejs.pluginType ) {
|
|
|
|
autoplay = mejs.attributes.autoplay && 'false' !== mejs.attributes.autoplay;
|
|
|
|
loop = mejs.attributes.loop && 'false' !== mejs.attributes.loop;
|
|
|
|
|
|
|
|
autoplay && mejs.addEventListener( 'canplay', function () {
|
|
|
|
mejs.play();
|
|
|
|
}, false );
|
|
|
|
|
|
|
|
loop && mejs.addEventListener( 'ended', function () {
|
|
|
|
mejs.play();
|
|
|
|
}, false );
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Only initialize new media elements.
|
|
|
|
$( '.wp-audio-shortcode, .wp-video-shortcode' )
|
|
|
|
.not( '.mejs-container' )
|
|
|
|
.filter(function () {
|
|
|
|
return ! $( this ).parent().hasClass( '.mejs-mediaelement' );
|
|
|
|
})
|
|
|
|
.mediaelementplayer( settings );
|
|
|
|
}
|
2014-05-11 03:28:15 +02:00
|
|
|
|
2015-09-20 05:17:24 +02:00
|
|
|
return {
|
|
|
|
initialize: initialize
|
2014-03-07 06:52:14 +01:00
|
|
|
};
|
2015-09-20 05:17:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
window.wp.mediaelement = new wpMediaElement();
|
2013-08-01 15:15:14 +02:00
|
|
|
|
2015-09-20 05:17:24 +02:00
|
|
|
$( document ).on( 'ready', window.wp.mediaelement.initialize );
|
2013-03-16 06:25:44 +01:00
|
|
|
|
2015-09-20 05:17:24 +02:00
|
|
|
})( window, jQuery );
|