-
Notifications
You must be signed in to change notification settings - Fork 1
/
newYUI3Widget.js
158 lines (134 loc) · 3.82 KB
/
newYUI3Widget.js
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
/*
* Copyright (c) 2009, Amostudio,inc
* All rights reserved.
* Code licensed under the BSD License:
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of the Amostudio,inc nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY Amostudio,inc ''AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL Amostudio,inc BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/**
*
*
* @module NewYUI3Widget
*/
// vars. constants shortcuts
/**
*
*
* @class NewYUI3Widget
* @extends Widget
* @param config {Object} Configuration object
* @constructor
*/
function NewYUI3Widget() {
NewYUI3Widget.superclass.constructor.apply(this,arguments);
}
Y.mix(NewYUI3Widget, {
/**
* The identity of the widget.
*
* @property NewYUI3Widget.NAME
* @type String
* @static
*/
NAME : "newyui3widget",
/**
* Static Object hash used to capture existing markup for progressive
* enhancement. Keys correspond to config attribute names and values
* are selectors used to inspect the contentBox for an existing node
* structure.
*
* @property NewYUI3Widget.HTML_PARSER
* @type Object
* @protected
* @static
*/
HTML_PARSER : {},
/**
* Static property used to define the default attribute configuration of
* the Widget.
*
* @property NewYUI3Widget.ATTRS
* @type Object
* @protected
* @static
*/
ATTRS : {
/**
* This attribute is
* defined by the base Widget class but has an empty value
*
* @property NewYUI3Widget.ATTRS
* @type Object
* @protected
* @static
*/
strings: {
value: {
//yourkey:your String value
}
}
}
});
Y.extend(NewYUI3Widget, Y.Widget, {
// config params:
// _disabled : false,
/**
*
*
* @method initializer
* @protected
*/
initializer : function () {
//Signals
//this.publish(SOMETHING);
},
/**
* Create the DOM structure for the newyui3widget.
*
* @method renderUI
* @protected
*/
renderUI : function () {
},
/**
*
* @method bindUI
* @protected
*/
bindUI : function () {
},
/**
* Synchronizes the DOM state with the attribute settings
*
* @method syncUI
*/
syncUI : function () {
},
/**
* Destructor lifecycle implementation for the newyui3widget class.
*
* @method destructor
* @protected
*/
destructor: function() { }
});
Y.NewYUI3Widget = NewYUI3Widget;