1
0
mirror of synced 2024-11-22 21:16:10 +03:00

fixed dropdown positioning when select2 has margins. fixes #501

This commit is contained in:
Igor Vaynberg 2012-10-16 10:22:25 -07:00
parent 258a85b06c
commit 3ed91862fa

View File

@ -883,9 +883,9 @@ the specific language governing permissions and limitations under the Apache Lic
// abstract
positionDropdown: function() {
var offset = this.container.offset(),
height = this.container.outerHeight(true),
width = this.container.outerWidth(true),
dropHeight = this.dropdown.outerHeight(true),
height = this.container.outerHeight(false),
width = this.container.outerWidth(false),
dropHeight = this.dropdown.outerHeight(false),
viewportBottom = $(window).scrollTop() + document.documentElement.clientHeight,
dropTop = offset.top + height,
dropLeft = offset.left,