MediaWiki:Common.js
From Conceptual Reconstructionism Project
Revision as of 23:17, 18 December 2021 by Thaumasnot (talk | contribs)
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
/* Any JavaScript here will be loaded for all users on every page load. */ function TimeSegment(track, segmentStart, segmentEnd, htmlElement) { this.track = track; this.segmentStart = segmentStart; this.segmentEnd = segmentEnd; this.htmlElement = htmlElement; } function PlaybackData() { this.stopTime = null; this.timeSegments = []; this.tracks = []; this.playingSegments = []; this.playingTrack = null; }; var playbackData = new PlaybackData(); $(document).ready(function() { // Create one audio player per declared track. $('*[data-track]').each(function() { $('<figure></figure>').append($('<figcaption></figcaption>').text($(this).attr('data-track-title'))).appendTo($(this)).append( $('<audio></audio>').prop('controls', true).attr('preload', 'auto').attr('src', $(this).attr('data-track')) ); }); // Create hyperlinks out of reconstruction markup. $('*[data-def]').click(function() { var url = location.href; location.href = "#" + $(this).attr('data-def'); history.replaceState(null, null, url); }); // Update timing data. $('*[data-segment]').each(function() { var m = /(?<track>\d+\/)?((?<minuteStart>\d+):)?(?<secondStart>\d+(.\d*)?)-((?<minuteEnd>\d+):)?(?<secondEnd>\d+(.\d*)?)/.exec($(this).attr('data-segment')); if (m) { playbackData.timeSegments.add(new TimeSegment(parseInt(m.groups.track), parseInt(m.groups.minuteStart) * 60 + parseFloat(m.groups.secondStart), parseInt(m.groups.minuteEnd) * 60 + parseFloat(m.groups.secondEnd), $(this) )); } else { $(this).append('Wrong time segment'); } }); });