Changeset 42675
- Timestamp:
- 02/09/2018 02:31:18 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/js/media/views/spinner.js
r41351 r42675 1 1 /** 2 2 * wp.media.view.Spinner 3 * 4 * Represents a spinner in the Media Library. 5 * 6 * @since 3.9.0 3 7 * 4 8 * @memberOf wp.media.view … … 15 19 delay: 400, 16 20 21 /** 22 * Shows the spinner. Delays the visibility by the configured amount. 23 * 24 * @since 3.9.0 25 * 26 * @return {wp.media.view.Spinner} The spinner. 27 */ 17 28 show: function() { 18 29 if ( ! this.spinnerTimeout ) { … … 25 36 }, 26 37 38 /** 39 * Hides the spinner. 40 * 41 * @since 3.9.0 42 * 43 * @return {wp.media.view.Spinner} The spinner. 44 */ 27 45 hide: function() { 28 46 this.$el.removeClass( 'is-active' );
Note: See TracChangeset
for help on using the changeset viewer.