Make WordPress Core

Changeset 42709


Ignore:
Timestamp:
02/13/2018 03:44:14 PM (7 years ago)
Author:
atimmer
Message:

Docs: Improve JSDoc for media/views/spinner.js.

Amends r42675 - includes the built media files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/js/media-views.js

    r42624 r42709  
    93709370 * wp.media.view.Spinner
    93719371 *
     9372 * Represents a spinner in the Media Library.
     9373 *
     9374 * @since 3.9.0
     9375 *
    93729376 * @memberOf wp.media.view
    93739377 *
     
    93839387    delay: 400,
    93849388
     9389    /**
     9390     * Shows the spinner. Delays the visibility by the configured amount.
     9391     *
     9392     * @since 3.9.0
     9393     *
     9394     * @return {wp.media.view.Spinner} The spinner.
     9395     */
    93859396    show: function() {
    93869397        if ( ! this.spinnerTimeout ) {
     
    93939404    },
    93949405
     9406    /**
     9407     * Hides the spinner.
     9408     *
     9409     * @since 3.9.0
     9410     *
     9411     * @return {wp.media.view.Spinner} The spinner.
     9412     */
    93959413    hide: function() {
    93969414        this.$el.removeClass( 'is-active' );
Note: See TracChangeset for help on using the changeset viewer.