run:R W Run
DIR
2026-03-11 16:18:51
R W Run
259.6 KB
2026-03-11 16:18:51
R W Run
154.3 KB
2026-03-11 16:18:51
R W Run
2.77 KB
2026-03-11 16:18:51
R W Run
1.16 KB
2026-03-11 16:18:51
R W Run
119.71 KB
2026-03-11 16:18:51
R W Run
66.71 KB
2026-03-11 16:18:51
R W Run
15.39 KB
2026-03-11 16:18:51
R W Run
10.99 KB
2026-03-11 16:18:51
R W Run
15.53 KB
2026-03-11 16:18:51
R W Run
11.14 KB
2026-03-11 16:18:51
R W Run
2.82 KB
2026-03-11 16:18:51
R W Run
4.49 KB
2026-03-11 16:18:51
R W Run
4.84 KB
2026-03-11 16:18:51
R W Run
2.69 KB
2026-03-11 16:18:51
R W Run
4.09 KB
2026-03-11 16:18:51
R W Run
1.08 KB
2026-03-11 16:18:51
R W Run
5.28 KB
2026-03-11 16:18:51
R W Run
3.36 KB
2026-03-11 16:18:51
R W Run
error_log
📄wp-playlist.js
1/* global _wpmejsSettings, MediaElementPlayer */
2
3(function ($, _, Backbone) {
4 'use strict';
5
6 /** @namespace wp */
7 window.wp = window.wp || {};
8
9 var WPPlaylistView = Backbone.View.extend(/** @lends WPPlaylistView.prototype */{
10 /**
11 * @constructs
12 *
13 * @param {Object} options The options to create this playlist view with.
14 * @param {Object} options.metadata The metadata
15 */
16 initialize : function (options) {
17 this.index = 0;
18 this.settings = {};
19 this.data = options.metadata || $.parseJSON( this.$('script.wp-playlist-script').html() );
20 this.playerNode = this.$( this.data.type );
21
22 this.tracks = new Backbone.Collection( this.data.tracks );
23 this.current = this.tracks.first();
24
25 if ( 'audio' === this.data.type ) {
26 this.currentTemplate = wp.template( 'wp-playlist-current-item' );
27 this.currentNode = this.$( '.wp-playlist-current-item' );
28 }
29
30 this.renderCurrent();
31
32 if ( this.data.tracklist ) {
33 this.itemTemplate = wp.template( 'wp-playlist-item' );
34 this.playingClass = 'wp-playlist-playing';
35 this.renderTracks();
36 }
37
38 this.playerNode.attr( 'src', this.current.get( 'src' ) );
39
40 _.bindAll( this, 'bindPlayer', 'bindResetPlayer', 'setPlayer', 'ended', 'clickTrack' );
41
42 if ( ! _.isUndefined( window._wpmejsSettings ) ) {
43 this.settings = _.clone( _wpmejsSettings );
44 }
45 this.settings.success = this.bindPlayer;
46 this.setPlayer();
47 },
48
49 bindPlayer : function (mejs) {
50 this.mejs = mejs;
51 this.mejs.addEventListener( 'ended', this.ended );
52 },
53
54 bindResetPlayer : function (mejs) {
55 this.bindPlayer( mejs );
56 this.playCurrentSrc();
57 },
58
59 setPlayer: function (force) {
60 if ( this.player ) {
61 this.player.pause();
62 this.player.remove();
63 this.playerNode = this.$( this.data.type );
64 }
65
66 if (force) {
67 this.playerNode.attr( 'src', this.current.get( 'src' ) );
68 this.settings.success = this.bindResetPlayer;
69 }
70
71 // This is also our bridge to the outside world.
72 this.player = new MediaElementPlayer( this.playerNode.get(0), this.settings );
73 },
74
75 playCurrentSrc : function () {
76 this.renderCurrent();
77 this.mejs.setSrc( this.playerNode.attr( 'src' ) );
78 this.mejs.load();
79 this.mejs.play();
80 },
81
82 renderCurrent : function () {
83 var dimensions, defaultImage = 'wp-includes/images/media/video.svg';
84 if ( 'video' === this.data.type ) {
85 if ( this.data.images && this.current.get( 'image' ) && -1 === this.current.get( 'image' ).src.indexOf( defaultImage ) ) {
86 this.playerNode.attr( 'poster', this.current.get( 'image' ).src );
87 }
88 dimensions = this.current.get( 'dimensions' );
89 if ( dimensions && dimensions.resized ) {
90 this.playerNode.attr( dimensions.resized );
91 }
92 } else {
93 if ( ! this.data.images ) {
94 this.current.set( 'image', false );
95 }
96 this.currentNode.html( this.currentTemplate( this.current.toJSON() ) );
97 }
98 },
99
100 renderTracks : function () {
101 var self = this, i = 1, tracklist = $( '<div class="wp-playlist-tracks"></div>' );
102 this.tracks.each(function (model) {
103 if ( ! self.data.images ) {
104 model.set( 'image', false );
105 }
106 model.set( 'artists', self.data.artists );
107 model.set( 'index', self.data.tracknumbers ? i : false );
108 tracklist.append( self.itemTemplate( model.toJSON() ) );
109 i += 1;
110 });
111 this.$el.append( tracklist );
112
113 this.$( '.wp-playlist-item' ).eq(0).addClass( this.playingClass );
114 },
115
116 events : {
117 'click .wp-playlist-item' : 'clickTrack',
118 'click .wp-playlist-next' : 'next',
119 'click .wp-playlist-prev' : 'prev'
120 },
121
122 clickTrack : function (e) {
123 e.preventDefault();
124
125 this.index = this.$( '.wp-playlist-item' ).index( e.currentTarget );
126 this.setCurrent();
127 },
128
129 ended : function () {
130 if ( this.index + 1 < this.tracks.length ) {
131 this.next();
132 } else {
133 this.index = 0;
134 this.setCurrent();
135 }
136 },
137
138 next : function () {
139 this.index = this.index + 1 >= this.tracks.length ? 0 : this.index + 1;
140 this.setCurrent();
141 },
142
143 prev : function () {
144 this.index = this.index - 1 < 0 ? this.tracks.length - 1 : this.index - 1;
145 this.setCurrent();
146 },
147
148 loadCurrent : function () {
149 var last = this.playerNode.attr( 'src' ) && this.playerNode.attr( 'src' ).split('.').pop(),
150 current = this.current.get( 'src' ).split('.').pop();
151
152 this.mejs && this.mejs.pause();
153
154 if ( last !== current ) {
155 this.setPlayer( true );
156 } else {
157 this.playerNode.attr( 'src', this.current.get( 'src' ) );
158 this.playCurrentSrc();
159 }
160 },
161
162 setCurrent : function () {
163 this.current = this.tracks.at( this.index );
164
165 if ( this.data.tracklist ) {
166 this.$( '.wp-playlist-item' )
167 .removeClass( this.playingClass )
168 .eq( this.index )
169 .addClass( this.playingClass );
170 }
171
172 this.loadCurrent();
173 }
174 });
175
176 /**
177 * Initialize media playlists in the document.
178 *
179 * Only initializes new playlists not previously-initialized.
180 *
181 * @since 4.9.3
182 * @return {void}
183 */
184 function initialize() {
185 $( '.wp-playlist:not(:has(.mejs-container))' ).each( function() {
186 new WPPlaylistView( { el: this } );
187 } );
188 }
189
190 /**
191 * Expose the API publicly on window.wp.playlist.
192 *
193 * @namespace wp.playlist
194 * @since 4.9.3
195 * @type {object}
196 */
197 window.wp.playlist = {
198 initialize: initialize
199 };
200
201 $( document ).ready( initialize );
202
203 window.WPPlaylistView = WPPlaylistView;
204
205}(jQuery, _, Backbone));
206
Ui Ux Design – Teachers Night Out https://cardgames4educators.com Wed, 16 Oct 2024 22:24:18 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.4 https://cardgames4educators.com/wp-content/uploads/2024/06/cropped-Card-4-Educators-logo-32x32.png Ui Ux Design – Teachers Night Out https://cardgames4educators.com 32 32 Masters In English How English Speaker https://cardgames4educators.com/masters-in-english-how-english-speaker/ https://cardgames4educators.com/masters-in-english-how-english-speaker/#comments Mon, 27 May 2024 08:54:45 +0000 https://themexriver.com/wp/kadu/?p=1

Erat himenaeos neque id sagittis massa. Hac suscipit pulvinar dignissim platea magnis eu. Don tellus a pharetra inceptos efficitur dui pulvinar. Feugiat facilisis penatibus pulvinar nunc dictumst donec odio platea habitasse. Lacus porta dolor purus elit ante bibendum tortor netus taciti nullam cubilia. Erat per suspendisse placerat morbi egestas pulvinar bibendum sollicitudin nec. Euismod cubilia eleifend velit himenaeos sodales lectus. Leo maximus cras ac porttitor aliquam torquent pulvinar odio volutpat parturient. Quisque risus finibus suspendisse mus purus magnis facilisi condimentum consectetur dui. Curae elit suspendisse cursus vehicula.

Turpis taciti class non vel pretium quis pulvinar tempor lobortis nunc. Libero phasellus parturient sapien volutpat malesuada ornare. Cubilia dignissim sollicitudin rhoncus lacinia maximus. Cras lorem fermentum bibendum pellentesque nisl etiam ligula enim cubilia. Vulputate pede sapien torquent montes tempus malesuada in mattis dis turpis vitae. Porta est tempor ex eget feugiat vulputate ipsum. Justo nec iaculis habitant diam arcu fermentum.

We offer comprehen sive emplo ment services such as assistance wit employer compliance.Our company is your strategic HR partner as instead of HR. john smithson

Cubilia dignissim sollicitudin rhoncus lacinia maximus. Cras lorem fermentum bibendum pellentesque nisl etiam ligula enim cubilia. Vulputate pede sapien torquent montes tempus malesuada in mattis dis turpis vitae.

Exploring Learning Landscapes in Academic

Feugiat facilisis penatibus pulvinar nunc dictumst donec odio platea habitasse. Lacus porta dolor purus elit ante bibendum tortor netus taciti nullam cubilia. Erat per suspendisse placerat morbi egestas pulvinar bibendum sollicitudin nec. Euismod cubilia eleifend velit himenaeos sodales lectus. Leo maximus cras ac porttitor aliquam torquent.

]]>
https://cardgames4educators.com/masters-in-english-how-english-speaker/feed/ 1