Skip to content

Commit

Permalink
fix(ui): show wizard numbers in ie9
Browse files Browse the repository at this point in the history
IE9 was not showing all of the step numbers for the add-dataset wizard.

Closes #10441
  • Loading branch information
Spencer Wahl committed May 29, 2015
1 parent fd4fff5 commit d04214e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/js/RAMP/Modules/stepItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ define([

.to(this._optionsBackgroundNode, this._transitionDuration, {
height: targetChildStep.getContentOuterHeight(),
"line-height": targetChildStep.getContentOuterHeight(),
"line-height": targetChildStep.getContentOuterHeight() + 'px',
ease: "easeOutCirc"
}, 0)

Expand Down Expand Up @@ -582,7 +582,7 @@ define([
// animate step's background
.to(this._optionsBackgroundNode, 0, {
height: targetChildStep.getContentOuterHeight(),
"line-height": targetChildStep.getContentOuterHeight()
"line-height": targetChildStep.getContentOuterHeight() + 'px'
}, 0)

// animate height and position of the options' container node
Expand Down Expand Up @@ -957,7 +957,7 @@ define([
if (this._parent) {
tl.to(this._parent._optionsBackgroundNode, this._transitionDuration / 2, {
height: contentHeight + heightChange,
"line-height": contentHeight + heightChange,
'line-height': contentHeight + heightChange + 'px',
ease: "easeOutCirc"
}, 0);
}
Expand Down

0 comments on commit d04214e

Please sign in to comment.