Make WordPress Core

Ticket #22649: 22649-media-views.js.patch

File 22649-media-views.js.patch, 712 bytes (added by azaozz, 12 years ago)
  • wp-includes/js/media-views.js

     
    17761776                        if ( ! this.views.attached )
    17771777                                this.attach();
    17781778
     1779                        // Attempt to work around a nasty long-standing bug with position: fixed in iOS Safari
     1780                        if ( /Mobile\/.+Safari/.test(window.navigator.userAgent) ) {
     1781                                $('div.media-modal, div.media-modal-backdrop').css('position', 'absolute');
     1782                                // making the modal position: absolute pins it at the top of the window :(
     1783                                $(window).scrollTop(0);
     1784                        }
     1785
    17791786                        this.$el.show().focus();
    17801787                        return this.propagate('open');
    17811788                },