Browse Source

Remove unused variables (#5554)

Luiz Américo 5 years ago
parent
commit
7b9cfcaaa0
2 changed files with 0 additions and 6 deletions
  1. 0 2
      src/js/select2/data/tags.js
  2. 0 4
      src/js/select2/selection/base.js

+ 0 - 2
src/js/select2/data/tags.js

@@ -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 () {

+ 0 - 4
src/js/select2/selection/base.js

@@ -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;
         }