new TextTrackList()
- See:
Extends
Members
-
inherited protected allowedEvents_
-
Events that can be called with on + eventName. See
EventHandler.Properties:
Name Type Description TrackList#allowedEvents_Object -
inherited lengthnumber
-
The current number of
Tracks in the this Trackist.
Methods
-
inherited addEventListener()
-
An alias of
EventTarget#on. AllowsEventTargetto mimic the standard DOM API.- See:
-
overrides addTrack(track)
-
Add a
TextTrackto theTextTrackListName Type Description trackTextTrack The text track to add to the list.
Fires:
-
inherited any(type, fn)
-
This function will add an
event listenerthat gets triggered only once and is removed from all events. This is like adding an array ofevent listeners withEventTarget#onthat callsEventTarget#offon all events the first time it is triggered.Name Type Description typestring | Array.<string> An event name or an array of event names.
fnfunction The function to be called once for each event name.
-
inherited dispatchEvent()
-
An alias of
EventTarget#trigger. AllowsEventTargetto mimic the standard DOM API.- See:
-
inherited off(type, fn)
-
Removes an
event listenerfor a specific event from an instance ofEventTarget. This makes it so that theevent listenerwill no longer get called when the named event happens.Name Type Description typestring | Array.<string> An event name or an array of event names.
fnfunction The function to remove.
-
inherited on(type, fn)
-
Adds an
event listenerto an instance of anEventTarget. Anevent listeneris a function that will get called when an event with a certain name gets triggered.Name Type Description typestring | Array.<string> An event name or an array of event names.
fnfunction The function to call with
EventTargets -
inherited one(type, fn)
-
This function will add an
event listenerthat gets triggered only once. After the first trigger it will get removed. This is like adding anevent listenerwithEventTarget#onthat callsEventTarget#offon itself.Name Type Description typestring | Array.<string> An event name or an array of event names.
fnfunction The function to be called once for each event name.
-
inherited removeEventListener()
-
An alias of
EventTarget#off. AllowsEventTargetto mimic the standard DOM API.- See:
-
Remove a
Trackfrom theTrackListName Type Description rtrackTrack The audio, video, or text track to remove from the list.
Fires:
-
inherited trigger(event)
-
This function causes an event to happen. This will then cause any
event listenersthat are waiting for that event, to get called. If there are noevent listenersfor an event then nothing will happen.If the name of the
Eventthat is being triggered is inEventTarget.allowedEvents_. Trigger will also call theon+uppercaseEventNamefunction.Example: 'click' is in
EventTarget.allowedEvents_, so, trigger will attempt to callonClickif it exists.Name Type Description eventstring | EventTarget~Event | Object The name of the event, an
Event, or an object with a key of type set to an event name.
Events
-
Triggered when a track is added to a track list.
Type:
Properties:
Name Type Description trackTrack A reference to track that was added.
Listeners of This Event:
-
inherited change
-
Triggered when a different track is selected/enabled.
Type:
Listeners of This Event:
-
inherited removetrack
-
Triggered when a track is removed from track list.
Type:
Properties:
Name Type Description trackTrack A reference to track that was removed.
Listeners of This Event: