Skip to content

Commit

Permalink
fix line length to keep jslint happy
Browse files Browse the repository at this point in the history
  • Loading branch information
alexweissman committed Oct 26, 2017
1 parent 16391c3 commit 77acc56
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/js/select2/selection/multiple.js
Expand Up @@ -55,7 +55,9 @@ define([
};

MultipleSelection.prototype.clear = function () {
this.$selection.find('.select2-selection__rendered').empty().removeAttr('title');
var $rendered = this.$selection.find('.select2-selection__rendered');
$rendered.empty();
$rendered.removeAttr('title');
};

MultipleSelection.prototype.display = function (data, container) {
Expand Down

0 comments on commit 77acc56

Please sign in to comment.