Page MenuHomePhabricator

UploadWizard IE7 Missing headline in thank-you step
Closed, ResolvedPublic

Description

Author: neilk

Description:
Under some circumstances, the headline is missing from step 4 ("thank you") of the UploadWizard in IE7 (and possibly 6).


Version: unspecified
Severity: normal

Details

Reference
bz26591

Related Objects

Event Timeline

bzimport raised the priority of this task from to Medium.Nov 21 2014, 11:13 PM
bzimport added a project: UploadWizard.
bzimport set Reference to bz26591.

neilk wrote:

believed fixed, assigning to Kaldari to verify

The h3 isn't in the DOM at all in IE7. Specifically, an h3 is supposed to occur as the first child of div#mwe-upwiz-thanks.

Looks like line 1013 in mw.UploadWizard.js is failing:

$j( '#mwe-upwiz-thanks' )

.append( $j( '<h3 style="text-align: center;">' ).msg( 'mwe-upwiz-thanks-intro' ),
    $j( '<p style="margin-bottom: 2em; text-align: center;">' )
        .msg( 'mwe-upwiz-thanks-explain', _this.uploads.length ) );