1
0
mirror of synced 2024-11-21 20:46:07 +03:00

Remove unused variables (#5554)

This commit is contained in:
Luiz Américo 2019-08-07 08:24:17 -03:00 committed by Kevin Brown
parent f13ba12bea
commit 7b9cfcaaa0
2 changed files with 0 additions and 6 deletions

View File

@ -111,8 +111,6 @@ define([
};
Tags.prototype._removeOldTags = function (_) {
var tag = this._lastTag;
var $options = this.$element.find('option[data-select2-tag]');
$options.each(function () {

View File

@ -39,7 +39,6 @@ define([
BaseSelection.prototype.bind = function (container, $container) {
var self = this;
var id = container.id + '-container';
var resultsId = container.id + '-results';
this.container = container;
@ -117,7 +116,6 @@ define([
};
BaseSelection.prototype._attachCloseHandler = function (container) {
var self = this;
$(document.body).on('mousedown.select2.' + container.id, function (e) {
var $target = $(e.target);
@ -127,8 +125,6 @@ define([
var $all = $('.select2.select2-container--open');
$all.each(function () {
var $this = $(this);
if (this == $select[0]) {
return;
}