19 lines
476 B
Plaintext
19 lines
476 B
Plaintext
define([
|
|
|
|
], function () {
|
|
function AttachContainer (decorated, $element, options) {
|
|
decorated.call(this, $element, options);
|
|
}
|
|
|
|
AttachContainer.prototype.position =
|
|
function (decorated, $dropdown, $container) {
|
|
var $dropdownContainer = $container.find('.dropdown-wrapper');
|
|
$dropdownContainer.append($dropdown);
|
|
|
|
$dropdown.addClass('select2-dropdown--below');
|
|
$container.addClass('select2-container--below');
|
|
};
|
|
|
|
return AttachContainer;
|
|
});
|