1
0
mirror of synced 2024-11-25 22:36:03 +03:00

Implement Dropdown.bind

This closes https://github.com/select2/select2/issues/3239
This commit is contained in:
Kevin Brown 2015-08-21 20:51:42 -04:00
parent 73e50ae92c
commit 89858c418d

View File

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