1
0
mirror of synced 2025-03-10 14:46:10 +03:00

Fixed jshint errors due to too long lines on the attachBody adapter

This commit is contained in:
Manuel Alvarez Alvarez 2015-11-19 15:49:52 +01:00
parent eae4d01158
commit a06a08a028

View File

@ -80,7 +80,8 @@ define([
this.$dropdownContainer.detach();
};
AttachBody.prototype._attachPositioningHandler = function (decorated, container) {
AttachBody.prototype._attachPositioningHandler =
function (decorated, container) {
var self = this;
var scrollEvent = 'scroll.select2.' + container.id;
@ -107,7 +108,8 @@ define([
});
};
AttachBody.prototype._detachPositioningHandler = function (decorated, container) {
AttachBody.prototype._detachPositioningHandler =
function (decorated, container) {
var scrollEvent = 'scroll.select2.' + container.id;
var resizeEvent = 'resize.select2.' + container.id;
var orientationEvent = 'orientationchange.select2.' + container.id;