diff --git a/wp-includes/js/media-views.js b/wp-includes/js/media-views.js
index 8465281..af3fe01 100644
|
a
|
b
|
|
| 2395 | 2395 | }, this ); |
| 2396 | 2396 | |
| 2397 | 2397 | this.on( 'content:create:iframe', this.iframeContent, this ); |
| | 2398 | this.on( 'content:deactivate:iframe', this.iframeContentCleanup, this ); |
| 2398 | 2399 | this.on( 'menu:render:default', this.iframeMenu, this ); |
| 2399 | 2400 | this.on( 'open', this.hijackThickbox, this ); |
| 2400 | 2401 | this.on( 'close', this.restoreThickbox, this ); |
| … |
… |
|
| 2411 | 2412 | }); |
| 2412 | 2413 | }, |
| 2413 | 2414 | |
| | 2415 | iframeContentCleanup: function( content ) { |
| | 2416 | this.$el.removeClass('hide-toolbar'); |
| | 2417 | }, |
| | 2418 | |
| 2414 | 2419 | iframeMenu: function( view ) { |
| 2415 | 2420 | var views = {}; |
| 2416 | 2421 | |