fix JSDoc comments (#2468)
This commit is contained in:
		@ -240,7 +240,7 @@ class Ads {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  /**
 | 
					  /**
 | 
				
			||||||
   * This method is called whenever the ads are ready inside the AdDisplayContainer
 | 
					   * This method is called whenever the ads are ready inside the AdDisplayContainer
 | 
				
			||||||
   * @param {Event} adsManagerLoadedEvent
 | 
					   * @param {Event} event - adsManagerLoadedEvent
 | 
				
			||||||
   */
 | 
					   */
 | 
				
			||||||
  onAdsManagerLoaded = (event) => {
 | 
					  onAdsManagerLoaded = (event) => {
 | 
				
			||||||
    // Load could occur after a source change (race condition)
 | 
					    // Load could occur after a source change (race condition)
 | 
				
			||||||
@ -581,6 +581,7 @@ class Ads {
 | 
				
			|||||||
  /**
 | 
					  /**
 | 
				
			||||||
   * Handles callbacks after an ad event was invoked
 | 
					   * Handles callbacks after an ad event was invoked
 | 
				
			||||||
   * @param {String} event - Event type
 | 
					   * @param {String} event - Event type
 | 
				
			||||||
 | 
					   * @param args
 | 
				
			||||||
   */
 | 
					   */
 | 
				
			||||||
  trigger = (event, ...args) => {
 | 
					  trigger = (event, ...args) => {
 | 
				
			||||||
    const handlers = this.events[event];
 | 
					    const handlers = this.events[event];
 | 
				
			||||||
 | 
				
			|||||||
@ -649,7 +649,7 @@ class Plyr {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  /**
 | 
					  /**
 | 
				
			||||||
   * Set playback speed
 | 
					   * Set playback speed
 | 
				
			||||||
   * @param {Number} speed - the speed of playback (0.5-2.0)
 | 
					   * @param {Number} input - the speed of playback (0.5-2.0)
 | 
				
			||||||
   */
 | 
					   */
 | 
				
			||||||
  set speed(input) {
 | 
					  set speed(input) {
 | 
				
			||||||
    let speed = null;
 | 
					    let speed = null;
 | 
				
			||||||
@ -953,7 +953,7 @@ class Plyr {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  /**
 | 
					  /**
 | 
				
			||||||
   * Set the caption track by index
 | 
					   * Set the caption track by index
 | 
				
			||||||
   * @param {Number} - Caption index
 | 
					   * @param {Number} input - Caption index
 | 
				
			||||||
   */
 | 
					   */
 | 
				
			||||||
  set currentTrack(input) {
 | 
					  set currentTrack(input) {
 | 
				
			||||||
    captions.set.call(this, input, false);
 | 
					    captions.set.call(this, input, false);
 | 
				
			||||||
@ -971,7 +971,7 @@ class Plyr {
 | 
				
			|||||||
  /**
 | 
					  /**
 | 
				
			||||||
   * Set the wanted language for captions
 | 
					   * Set the wanted language for captions
 | 
				
			||||||
   * Since tracks can be added later it won't update the actual caption track until there is a matching track
 | 
					   * Since tracks can be added later it won't update the actual caption track until there is a matching track
 | 
				
			||||||
   * @param {String} - Two character ISO language code (e.g. EN, FR, PT, etc)
 | 
					   * @param {String} input - Two character ISO language code (e.g. EN, FR, PT, etc)
 | 
				
			||||||
   */
 | 
					   */
 | 
				
			||||||
  set language(input) {
 | 
					  set language(input) {
 | 
				
			||||||
    captions.setLanguage.call(this, input, false);
 | 
					    captions.setLanguage.call(this, input, false);
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user