From 89858c418d511dc3a141c9e62039861431b495d0 Mon Sep 17 00:00:00 2001 From: Kevin Brown Date: Fri, 21 Aug 2015 20:51:42 -0400 Subject: [PATCH] Implement Dropdown.bind This closes https://github.com/select2/select2/issues/3239 --- src/js/select2/dropdown.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/js/select2/dropdown.js b/src/js/select2/dropdown.js index 93d503a5..a6fc40bc 100644 --- a/src/js/select2/dropdown.js +++ b/src/js/select2/dropdown.js @@ -25,6 +25,10 @@ define([ return $dropdown; }; + Dropdown.prototype.bind = function () { + // Should be implemented in subclasses + }; + Dropdown.prototype.position = function ($dropdown, $container) { // Should be implmented in subclasses };