Lines Matching defs:AbstractChosen

14   var $, AbstractChosen, Chosen, SelectParser, _ref,
120 AbstractChosen = (function() {
121 function AbstractChosen(form_field, options) {
124 if (!AbstractChosen.browser_is_supported()) {
136 AbstractChosen.prototype.set_default_values = function() {
162 AbstractChosen.prototype.set_default_text = function() {
166 this.default_text = this.options.placeholder_text_multiple || this.options.placeholder_text || AbstractChosen.default_multiple_text;
168 this.default_text = this.options.placeholder_text_single || this.options.placeholder_text || AbstractChosen.default_single_text;
170 return this.results_none_found = this.form_field.getAttribute("data-no_results_text") || this.options.no_results_text || AbstractChosen.default_no_result_text;
173 AbstractChosen.prototype.choice_label = function(item) {
181 AbstractChosen.prototype.mouse_enter = function() {
185 AbstractChosen.prototype.mouse_leave = function() {
189 AbstractChosen.prototype.input_focus = function(evt) {
204 AbstractChosen.prototype.input_blur = function(evt) {
214 AbstractChosen.prototype.results_option_build = function(options) {
236 AbstractChosen.prototype.result_add_option = function(option) {
271 AbstractChosen.prototype.result_add_group = function(group) {
293 AbstractChosen.prototype.results_update_field = function() {
305 AbstractChosen.prototype.reset_single_select_options = function() {
320 AbstractChosen.prototype.results_toggle = function() {
328 AbstractChosen.prototype.results_search = function(evt) {
336 AbstractChosen.prototype.winnow_results = function() {
392 AbstractChosen.prototype.get_search_regex = function(escaped_search_string) {
398 AbstractChosen.prototype.search_string_match = function(search_string, regex) {
415 AbstractChosen.prototype.choices_count = function() {
431 AbstractChosen.prototype.choices_click = function(evt) {
438 AbstractChosen.prototype.keyup_checker = function(evt) {
474 AbstractChosen.prototype.clipboard_event_checker = function(evt) {
481 AbstractChosen.prototype.container_width = function() {
489 AbstractChosen.prototype.include_option_in_results = function(option) {
502 AbstractChosen.prototype.search_results_touchstart = function(evt) {
507 AbstractChosen.prototype.search_results_touchmove = function(evt) {
512 AbstractChosen.prototype.search_results_touchend = function(evt) {
518 AbstractChosen.prototype.outerHTML = function(element) {
528 AbstractChosen.browser_is_supported = function() {
543 AbstractChosen.default_multiple_text = "Select Some Options";
545 AbstractChosen.default_single_text = "Select an Option";
547 AbstractChosen.default_no_result_text = "No results match";
549 return AbstractChosen;
557 if (!AbstractChosen.browser_is_supported()) {
1255 })(AbstractChosen);