Docs: Improve JSDoc for media/views/spinner.js
.
Amends r42675 - includes the built media files. git-svn-id: https://develop.svn.wordpress.org/trunk@42709 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
56cef1dc9d
commit
6a81ffff31
@ -9369,6 +9369,10 @@ module.exports = EditImage;
|
||||
/**
|
||||
* wp.media.view.Spinner
|
||||
*
|
||||
* Represents a spinner in the Media Library.
|
||||
*
|
||||
* @since 3.9.0
|
||||
*
|
||||
* @memberOf wp.media.view
|
||||
*
|
||||
* @class
|
||||
@ -9382,6 +9386,13 @@ var Spinner = wp.media.View.extend(/** @lends wp.media.view.Spinner.prototype */
|
||||
spinnerTimeout: false,
|
||||
delay: 400,
|
||||
|
||||
/**
|
||||
* Shows the spinner. Delays the visibility by the configured amount.
|
||||
*
|
||||
* @since 3.9.0
|
||||
*
|
||||
* @return {wp.media.view.Spinner} The spinner.
|
||||
*/
|
||||
show: function() {
|
||||
if ( ! this.spinnerTimeout ) {
|
||||
this.spinnerTimeout = _.delay(function( $el ) {
|
||||
@ -9392,6 +9403,13 @@ var Spinner = wp.media.View.extend(/** @lends wp.media.view.Spinner.prototype */
|
||||
return this;
|
||||
},
|
||||
|
||||
/**
|
||||
* Hides the spinner.
|
||||
*
|
||||
* @since 3.9.0
|
||||
*
|
||||
* @return {wp.media.view.Spinner} The spinner.
|
||||
*/
|
||||
hide: function() {
|
||||
this.$el.removeClass( 'is-active' );
|
||||
this.spinnerTimeout = clearTimeout( this.spinnerTimeout );
|
||||
|
Loading…
Reference in New Issue
Block a user