Browse Source

Trigger the `select` event in the tokenizer

This closes https://github.com/select2/select2/issues/3325.
This closes https://github.com/select2/select2/pull/3453.
Stretch 9 năm trước cách đây
mục cha
commit
d08cb874f9
1 tập tin đã thay đổi với 3 bổ sung1 xóa
  1. 3 1
      src/js/select2/data/tokenizer.js

+ 3 - 1
src/js/select2/data/tokenizer.js

@@ -22,7 +22,9 @@ define([
     var self = this;
 
     function select (data) {
-      self.select(data);
+      self.trigger('select', {
+        data: data
+      });
     }
 
     params.term = params.term || '';