blob: 0531acb96abf3b2afb98d92a212d374145e45c5f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
/**
* jQuery TextExt Plugin
* http://textextjs.com
*
* @version 1.3.1
* @copyright Copyright (C) 2011 Alex Gorbatchev. All rights reserved.
* @license MIT License
*/
(function($)
{
/**
* Displays a dropdown style arrow button. The `TextExtArrow` works together with the
* `TextExtAutocomplete` plugin and whenever clicked tells the autocomplete plugin to
* display its suggestions.
*
* @author agorbatchev
* @date 2011/12/27
* @id TextExtArrow
*/
function TextExtArrow() {};
$.fn.textext.TextExtArrow = TextExtArrow;
$.fn.textext.addPlugin('arrow', TextExtArrow);
var p = TextExtArrow.prototype,
/**
* Arrow plugin only has one option and that is its HTML template. It could be
* changed when passed to the `$().textext()` function. For example:
*
* $('textarea').textext({
* plugins: 'arrow',
* html: {
* arrow: "<span/>"
* }
* })
*
* @author agorbatchev
* @date 2011/12/27
* @id TextExtArrow.options
*/
/**
* HTML source that is used to generate markup required for the arrow.
*
* @name html.arrow
* @default '<div class="text-arrow"/>'
* @author agorbatchev
* @date 2011/12/27
* @id TextExtArrow.options.html.arrow
*/
OPT_HTML_ARROW = 'html.arrow',
DEFAULT_OPTS = {
html : {
arrow : '<div class="text-arrow"/>'
}
}
;
/**
* Initialization method called by the core during plugin instantiation.
*
* @signature TextExtArrow.init(core)
*
* @param core {TextExt} Instance of the TextExt core class.
*
* @author agorbatchev
* @date 2011/12/27
* @id TextExtArrow.init
*/
p.init = function(core)
{
var self = this,
arrow
;
self.baseInit(core, DEFAULT_OPTS);
self._arrow = arrow = $(self.opts(OPT_HTML_ARROW));
self.core().wrapElement().append(arrow);
arrow.bind('click', function(e) { self.onArrowClick(e); });
};
//--------------------------------------------------------------------------------
// Event handlers
/**
* Reacts to the `click` event whenever user clicks the arrow.
*
* @signature TextExtArrow.onArrowClick(e)
*
* @param e {Object} jQuery event.
* @author agorbatchev
* @date 2011/12/27
* @id TextExtArrow.onArrowClick
*/
p.onArrowClick = function(e)
{
this.trigger('toggleDropdown');
this.core().focusInput();
};
//--------------------------------------------------------------------------------
// Core functionality
})(jQuery);
|