fixed dropdown positioning when select2 has margins. fixes #501
This commit is contained in:
parent
258a85b06c
commit
3ed91862fa
@ -883,9 +883,9 @@ the specific language governing permissions and limitations under the Apache Lic
|
|||||||
// abstract
|
// abstract
|
||||||
positionDropdown: function() {
|
positionDropdown: function() {
|
||||||
var offset = this.container.offset(),
|
var offset = this.container.offset(),
|
||||||
height = this.container.outerHeight(true),
|
height = this.container.outerHeight(false),
|
||||||
width = this.container.outerWidth(true),
|
width = this.container.outerWidth(false),
|
||||||
dropHeight = this.dropdown.outerHeight(true),
|
dropHeight = this.dropdown.outerHeight(false),
|
||||||
viewportBottom = $(window).scrollTop() + document.documentElement.clientHeight,
|
viewportBottom = $(window).scrollTop() + document.documentElement.clientHeight,
|
||||||
dropTop = offset.top + height,
|
dropTop = offset.top + height,
|
||||||
dropLeft = offset.left,
|
dropLeft = offset.left,
|
||||||
|
Loading…
Reference in New Issue
Block a user