Skip to content

Commit

Permalink
Merge branch 'v4-dev' of github.com:twbs/bootstrap into v4-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
mdo committed Oct 30, 2016
2 parents 8c0e1f3 + bf43936 commit b718b71
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/src/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ const Util = (($) => {
},

reflow(element) {
new Function('bs', 'return bs')(element.offsetHeight)
return element.offsetHeight
},

triggerTransitionEnd(element) {
Expand Down
5 changes: 4 additions & 1 deletion scss/_input-group.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@
}

@if $enable-flex {
flex: 1;
flex: 1 1 auto;
// Add width 1% and flex-basis auto to ensure that button will not wrap out
// the column. Applies to IE Edge+ and Firefox. Chrome do not require this.
width: 1%;
} @else {
// IE9 fubars the placeholder attribute in text inputs and the arrows on
// select elements in input groups. To fix it, we float the input. Details:
Expand Down

0 comments on commit b718b71

Please sign in to comment.