Changeset 42709
- Timestamp:
- 02/13/2018 03:44:14 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/js/media-views.js
r42624 r42709 9370 9370 * wp.media.view.Spinner 9371 9371 * 9372 * Represents a spinner in the Media Library. 9373 * 9374 * @since 3.9.0 9375 * 9372 9376 * @memberOf wp.media.view 9373 9377 * … … 9383 9387 delay: 400, 9384 9388 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 */ 9385 9396 show: function() { 9386 9397 if ( ! this.spinnerTimeout ) { … … 9393 9404 }, 9394 9405 9406 /** 9407 * Hides the spinner. 9408 * 9409 * @since 3.9.0 9410 * 9411 * @return {wp.media.view.Spinner} The spinner. 9412 */ 9395 9413 hide: function() { 9396 9414 this.$el.removeClass( 'is-active' );
Note: See TracChangeset
for help on using the changeset viewer.