/home/techb158/ileadtechnology.com/public/admin/bower_components/select2/src/js/select2
NameSizeModeActions
compat/-0755rm
data/-0755rm
dropdown/-0755rm
i18n/-0755rm
selection/-0755rm
core.js154070644editdlrm
defaults.js106080644editdlrm
diacritics.js161650644editdlrm
dropdown.js9020644editdlrm
index.php530644editdlrm
keys.js3150644editdlrm
options.js32540644editdlrm
results.js129340644editdlrm
translation.js7170644editdlrm
utils.js66780644editdlrm
Edit: /home/techb158/ileadtechnology.com/public/admin/bower_components/select2/src/js/select2/dropdown.js (902B)
define([ 'jquery', './utils' ], function ($, Utils) { function Dropdown ($element, options) { this.$element = $element; this.options = options; Dropdown.__super__.constructor.call(this); } Utils.Extend(Dropdown, Utils.Observable); Dropdown.prototype.render = function () { var $dropdown = $( '' + '' + '' ); $dropdown.attr('dir', this.options.get('dir')); this.$dropdown = $dropdown; return $dropdown; }; Dropdown.prototype.bind = function () { // Should be implemented in subclasses }; Dropdown.prototype.position = function ($dropdown, $container) { // Should be implmented in subclasses }; Dropdown.prototype.destroy = function () { // Remove the dropdown from the DOM this.$dropdown.remove(); }; return Dropdown; });