summaryrefslogtreecommitdiff
path: root/extensions/TimedMediaHandler/MwEmbedModules/TimedText/TimedText.php
blob: 57f500436588df19391fdb2fa66168c007d1f447 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php

	// Register all the timedText modules
	return array(
		"mw.TimedText" => array(
			'scripts' => "resources/mw.TimedText.js",
			'styles' => "resources/mw.style.TimedText.css",
			'dependencies' => array(
				'mw.EmbedPlayer',
				'mw.TextSource'
			),
			'messageDir' => 'i18n',
		),
		"mw.TextSource" => array(
			'scripts' => "resources/mw.TextSource.js",
			'dependencies' => array(
				'mediawiki.UtilitiesTime',
				"mw.ajaxProxy",
			)
		)
	);