x4js 1.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/application.d.ts +95 -0
- package/lib/application.js +137 -0
- package/lib/base64.d.ts +31 -0
- package/lib/base64.js +135 -0
- package/lib/base_component.d.ts +64 -0
- package/lib/base_component.js +77 -0
- package/lib/button.d.ts +145 -0
- package/lib/button.js +235 -0
- package/lib/calendar.d.ts +77 -0
- package/lib/calendar.js +236 -0
- package/lib/canvas.d.ts +88 -0
- package/lib/canvas.js +354 -0
- package/lib/cardview.d.ts +83 -0
- package/lib/cardview.js +152 -0
- package/lib/checkbox.d.ts +72 -0
- package/lib/checkbox.js +126 -0
- package/lib/color.d.ts +144 -0
- package/lib/color.js +584 -0
- package/lib/colorpicker.d.ts +98 -0
- package/lib/colorpicker.js +1457 -0
- package/lib/combobox.d.ts +97 -0
- package/lib/combobox.js +246 -0
- package/lib/component.d.ts +572 -0
- package/lib/component.js +1712 -0
- package/lib/datastore.d.ts +392 -0
- package/lib/datastore.js +986 -0
- package/lib/dialog.d.ts +171 -0
- package/lib/dialog.js +468 -0
- package/lib/dom_events.d.ts +284 -0
- package/lib/dom_events.js +13 -0
- package/lib/drag_manager.d.ts +26 -0
- package/lib/drag_manager.js +118 -0
- package/lib/drawtext.d.ts +43 -0
- package/lib/drawtext.js +261 -0
- package/lib/fileupload.d.ts +60 -0
- package/lib/fileupload.js +158 -0
- package/lib/form.d.ts +122 -0
- package/lib/form.js +293 -0
- package/lib/formatters.d.ts +31 -0
- package/lib/formatters.js +75 -0
- package/lib/gridview.d.ts +171 -0
- package/lib/gridview.js +786 -0
- package/lib/hosts/host.d.ts +44 -0
- package/lib/hosts/host.js +69 -0
- package/lib/i18n.d.ts +67 -0
- package/lib/i18n.js +169 -0
- package/lib/icon.d.ts +56 -0
- package/lib/icon.js +173 -0
- package/lib/image.d.ts +51 -0
- package/lib/image.js +149 -0
- package/lib/index.js +1 -0
- package/lib/input.d.ts +86 -0
- package/lib/input.js +172 -0
- package/lib/label.d.ts +54 -0
- package/lib/label.js +86 -0
- package/lib/layout.d.ts +77 -0
- package/lib/layout.js +261 -0
- package/lib/link.d.ts +46 -0
- package/lib/link.js +55 -0
- package/lib/listview.d.ts +173 -0
- package/lib/listview.js +532 -0
- package/lib/md5.d.ts +56 -0
- package/lib/md5.js +397 -0
- package/lib/menu.d.ts +122 -0
- package/lib/menu.js +276 -0
- package/lib/messagebox.d.ts +64 -0
- package/lib/messagebox.js +141 -0
- package/lib/panel.d.ts +42 -0
- package/lib/panel.js +61 -0
- package/lib/popup.d.ts +71 -0
- package/lib/popup.js +373 -0
- package/lib/property_editor.d.ts +67 -0
- package/lib/property_editor.js +247 -0
- package/lib/radiobtn.d.ts +68 -0
- package/lib/radiobtn.js +131 -0
- package/lib/rating.d.ts +49 -0
- package/lib/rating.js +93 -0
- package/lib/request.d.ts +48 -0
- package/lib/request.js +220 -0
- package/lib/router.d.ts +13 -0
- package/lib/router.js +27 -0
- package/lib/settings.d.ts +33 -0
- package/lib/settings.js +63 -0
- package/lib/sidebarview.d.ts +44 -0
- package/lib/sidebarview.js +73 -0
- package/lib/smartedit.d.ts +103 -0
- package/lib/smartedit.js +381 -0
- package/lib/spreadsheet.d.ts +214 -0
- package/lib/spreadsheet.js +1073 -0
- package/lib/styles.d.ts +81 -0
- package/lib/styles.js +262 -0
- package/lib/svgcomponent.d.ts +165 -0
- package/lib/svgcomponent.js +350 -0
- package/lib/tabbar.d.ts +41 -0
- package/lib/tabbar.js +66 -0
- package/lib/tabview.d.ts +45 -0
- package/lib/tabview.js +79 -0
- package/lib/textarea.d.ts +59 -0
- package/lib/textarea.js +119 -0
- package/lib/textedit.d.ts +118 -0
- package/lib/textedit.js +406 -0
- package/lib/texthiliter.d.ts +56 -0
- package/lib/texthiliter.js +219 -0
- package/lib/toaster.d.ts +38 -0
- package/lib/toaster.js +58 -0
- package/lib/tools.d.ts +382 -0
- package/lib/tools.js +1096 -0
- package/lib/tooltips.d.ts +42 -0
- package/lib/tooltips.js +148 -0
- package/lib/treeview.d.ts +128 -0
- package/lib/treeview.js +490 -0
- package/lib/x4_events.d.ts +253 -0
- package/lib/x4_events.js +363 -0
- package/package.json +21 -0
- package/src/README.md +2 -0
- package/src/application.ts +191 -0
- package/src/base64.ts +162 -0
- package/src/base_component.ts +118 -0
- package/src/button.ts +327 -0
- package/src/calendar.ts +312 -0
- package/src/canvas.ts +501 -0
- package/src/cardview.ts +220 -0
- package/src/checkbox.ts +178 -0
- package/src/color.ts +748 -0
- package/src/colorpicker.ts +1618 -0
- package/src/combobox.ts +348 -0
- package/src/component.ts +2330 -0
- package/src/datastore.ts +1318 -0
- package/src/dialog.ts +631 -0
- package/src/dom_events.ts +297 -0
- package/src/drag_manager.ts +168 -0
- package/src/drawtext.ts +342 -0
- package/src/fileupload.ts +208 -0
- package/src/form.ts +362 -0
- package/src/formatters.ts +96 -0
- package/src/gridview.ts +1051 -0
- package/src/hosts/electron.ts +161 -0
- package/src/hosts/host.ts +100 -0
- package/src/hosts/nwjs.ts +141 -0
- package/src/hosts/nwjs_types.ts +339 -0
- package/src/i18n.ts +205 -0
- package/src/icon.ts +237 -0
- package/src/image.ts +198 -0
- package/src/input.ts +236 -0
- package/src/label.ts +124 -0
- package/src/layout.ts +366 -0
- package/src/link.ts +82 -0
- package/src/listview.ts +749 -0
- package/src/md5.ts +432 -0
- package/src/menu.ts +394 -0
- package/src/messagebox.ts +199 -0
- package/src/panel.ts +81 -0
- package/src/popup.ts +488 -0
- package/src/property_editor.ts +333 -0
- package/src/radiobtn.ts +190 -0
- package/src/rating.ts +131 -0
- package/src/request.ts +296 -0
- package/src/router.ts +43 -0
- package/src/settings.ts +75 -0
- package/src/sidebarview.ts +97 -0
- package/src/smartedit.ts +532 -0
- package/src/spreadsheet.ts +1423 -0
- package/src/styles.ts +332 -0
- package/src/svgcomponent.ts +440 -0
- package/src/tabbar.ts +105 -0
- package/src/tabview.ts +106 -0
- package/src/textarea.ts +183 -0
- package/src/textedit.ts +535 -0
- package/src/texthiliter.ts +284 -0
- package/src/toaster.ts +76 -0
- package/src/tools.ts +1391 -0
- package/src/tooltips.ts +185 -0
- package/src/treeview.ts +670 -0
- package/src/x4.less +1940 -0
- package/src/x4_events.ts +558 -0
- package/tsconfig.json +14 -0
|
@@ -0,0 +1,284 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ___ ___ __
|
|
3
|
+
* \ \_/ / / _
|
|
4
|
+
* \ / /_| |_
|
|
5
|
+
* / _ \____ _|
|
|
6
|
+
* /__/ \__\ |_|
|
|
7
|
+
*
|
|
8
|
+
* @file texthiliter.ts
|
|
9
|
+
* @author Etienne Cochard
|
|
10
|
+
* @license
|
|
11
|
+
* Copyright (c) 2019-2021 R-libre ingenierie
|
|
12
|
+
*
|
|
13
|
+
* This program is free software; you can redistribute it and/or modify
|
|
14
|
+
* it under the terms of the GNU General Public License as published by
|
|
15
|
+
* the Free Software Foundation; either version 3 of the License, or
|
|
16
|
+
* (at your option) any later version.
|
|
17
|
+
*
|
|
18
|
+
* This program is distributed in the hope that it will be useful,
|
|
19
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
20
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
21
|
+
* GNU General Public License for more details.
|
|
22
|
+
*
|
|
23
|
+
* You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
24
|
+
**/
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* idea came from https://www.cdolivet.com/editarea
|
|
28
|
+
*/
|
|
29
|
+
|
|
30
|
+
import { Component, CProps, CEventMap } from './component'
|
|
31
|
+
import { EvChange } from './x4_events'
|
|
32
|
+
|
|
33
|
+
interface TextHiliterEventMap extends CEventMap {
|
|
34
|
+
change: EvChange;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
interface TextHiliterProps extends CProps {
|
|
39
|
+
text: string;
|
|
40
|
+
kwList?: Set<string>;
|
|
41
|
+
change?: EvChange;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
export class TextHiliter extends Component<TextHiliterProps,TextHiliterEventMap> {
|
|
46
|
+
|
|
47
|
+
private m_text: string;
|
|
48
|
+
private m_ed: Component;
|
|
49
|
+
private m_hi: Component;
|
|
50
|
+
private m_top: number;
|
|
51
|
+
private m_kwList: Set<string>;
|
|
52
|
+
|
|
53
|
+
constructor( props: TextHiliterProps ) {
|
|
54
|
+
super( props );
|
|
55
|
+
|
|
56
|
+
this.m_kwList = props.kwList;
|
|
57
|
+
this.m_top = 0;
|
|
58
|
+
this.m_text = props.text ?? '';
|
|
59
|
+
|
|
60
|
+
this.mapPropEvents( props, 'change' );
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
/** @ignore */
|
|
64
|
+
render( ) {
|
|
65
|
+
this.setContent( [
|
|
66
|
+
this.m_hi = new Component( {
|
|
67
|
+
tag: 'span',
|
|
68
|
+
cls: '@fit @syntax-hiliter',
|
|
69
|
+
}),
|
|
70
|
+
this.m_ed = new Component( {
|
|
71
|
+
tag: 'textarea',
|
|
72
|
+
cls: '@fit',
|
|
73
|
+
width: '100%',
|
|
74
|
+
attrs: {
|
|
75
|
+
spellcheck: 'false',
|
|
76
|
+
wrap: 'off',
|
|
77
|
+
},
|
|
78
|
+
dom_events: {
|
|
79
|
+
input: ()=>this._hiliteText(),
|
|
80
|
+
scroll: ()=> this._updateScroll( ),
|
|
81
|
+
keydown: (e)=> this._keydown(e),
|
|
82
|
+
}
|
|
83
|
+
}),
|
|
84
|
+
|
|
85
|
+
])
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
componentCreated() {
|
|
89
|
+
super.componentCreated( );
|
|
90
|
+
this.value = this.m_text;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
get value( ) : string {
|
|
94
|
+
|
|
95
|
+
if( this.dom ) {
|
|
96
|
+
return (<HTMLTextAreaElement>this.m_ed.dom).value;
|
|
97
|
+
}
|
|
98
|
+
else {
|
|
99
|
+
return this.m_text;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
set value( t: string ) {
|
|
104
|
+
if( this.dom ) {
|
|
105
|
+
(<HTMLTextAreaElement>this.m_ed.dom).value = t;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
this.m_text = t;
|
|
109
|
+
this._hiliteText( );
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
private _keydown( e: KeyboardEvent ) {
|
|
113
|
+
if(e.key=='Tab' ){
|
|
114
|
+
e.preventDefault();
|
|
115
|
+
e.stopPropagation( );
|
|
116
|
+
|
|
117
|
+
let dom = <HTMLTextAreaElement>this.m_ed.dom;
|
|
118
|
+
|
|
119
|
+
let ss = dom.selectionStart;
|
|
120
|
+
let se = dom.selectionEnd;
|
|
121
|
+
dom.setRangeText( '\t', ss, se );
|
|
122
|
+
dom.setSelectionRange( ss+1, ss+1 );
|
|
123
|
+
dom.dispatchEvent( new Event( 'input' ) );
|
|
124
|
+
}
|
|
125
|
+
else if( e.key=='Enter' ) {
|
|
126
|
+
e.stopPropagation( );
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
private _hiliteText( ) {
|
|
131
|
+
let text = (<HTMLTextAreaElement>this.m_ed.dom).value;
|
|
132
|
+
|
|
133
|
+
if( !this.m_hi.dom.firstChild ) {
|
|
134
|
+
this.m_hi.dom.innerHTML = '<div style="position:absolute"></div>';
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
(<HTMLElement>this.m_hi.dom.firstChild).innerHTML = this._tokenize(text);
|
|
138
|
+
// this._updateScroll( );
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
private _updateScroll( ) {
|
|
142
|
+
|
|
143
|
+
this.startTimer('sync', 0, false, ( ) => {
|
|
144
|
+
let top = this.m_ed.dom.scrollTop;
|
|
145
|
+
if( top!=this.m_top ) {
|
|
146
|
+
this.m_hi.dom.scrollTop = top;
|
|
147
|
+
this.m_top = top;
|
|
148
|
+
}
|
|
149
|
+
this.m_hi.dom.scrollLeft = this.m_ed.dom.scrollLeft;
|
|
150
|
+
//this.m_hi.setStyleValue( 'width', this.m_ed.dom.clientWidth );
|
|
151
|
+
});
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
private _escape( text: string ) : string {
|
|
155
|
+
text = text.replace( /&/gm, '&' );
|
|
156
|
+
text = text.replace( /</gm, '<' );
|
|
157
|
+
text = text.replace( />/gm, '>' );
|
|
158
|
+
return text;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
private _tokenize( text: string ) : string {
|
|
164
|
+
|
|
165
|
+
const reNUM = /\d/;
|
|
166
|
+
const reNUM2 = /[\d.]/;
|
|
167
|
+
const rePUNC = /\+|-|,|\/|\*|=|%|!|\||;|\.|\[|\]|\{|\|\(|\)|}|<|>|&/;
|
|
168
|
+
const reKW = /[a-zA-Z_]/;
|
|
169
|
+
const reKW2 = /[a-zA-Z0-9_]/;
|
|
170
|
+
|
|
171
|
+
let result = '';
|
|
172
|
+
|
|
173
|
+
let i = 0;
|
|
174
|
+
let length = text.length;
|
|
175
|
+
let s;
|
|
176
|
+
|
|
177
|
+
console.time( "hilite" );
|
|
178
|
+
|
|
179
|
+
while( i<length ) {
|
|
180
|
+
|
|
181
|
+
let c = text.charAt( i );
|
|
182
|
+
|
|
183
|
+
// numbers
|
|
184
|
+
if( reNUM.test(c) ) {
|
|
185
|
+
|
|
186
|
+
let s = i;
|
|
187
|
+
do {
|
|
188
|
+
c = text.charAt( ++i );
|
|
189
|
+
} while( reNUM2.test(c) && i<length );
|
|
190
|
+
|
|
191
|
+
result += '<span class="num">' + text.substring( s, i ) + '</span>';
|
|
192
|
+
continue;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
// keywords
|
|
196
|
+
if( this.m_kwList ) {
|
|
197
|
+
if( reKW.test(c) ) {
|
|
198
|
+
|
|
199
|
+
let s = i;
|
|
200
|
+
|
|
201
|
+
do {
|
|
202
|
+
c = text.charAt( ++i );
|
|
203
|
+
} while( reKW2.test(c) && i<length );
|
|
204
|
+
|
|
205
|
+
let kw = text.substring( s, i );
|
|
206
|
+
if( this.m_kwList.has( kw ) ) {
|
|
207
|
+
result += '<span class="kword">' + kw + '</span>';
|
|
208
|
+
}
|
|
209
|
+
else {
|
|
210
|
+
result += kw;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
continue;
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
if( c=='#' ) {
|
|
218
|
+
let ne = text.indexOf( '\n', i+1 );
|
|
219
|
+
if( ne<0 ) {
|
|
220
|
+
ne = text.length;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
result += '<span class="cmt">' + this._escape(text.substring( i, ne )) + '</span>';
|
|
224
|
+
i = ne;
|
|
225
|
+
continue;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
// comments
|
|
229
|
+
if( c=='/' ) {
|
|
230
|
+
let cn = text.charAt( i+1 );
|
|
231
|
+
if( cn=='*' ) {
|
|
232
|
+
let ne = text.indexOf( '*/', i+2 );
|
|
233
|
+
if( ne<0 ) {
|
|
234
|
+
ne = text.length;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
result += '<span class="cmt">' + this._escape(text.substring( i, ne+2 )) + '</span>';
|
|
238
|
+
i = ne+2;
|
|
239
|
+
continue;
|
|
240
|
+
}
|
|
241
|
+
else if( cn=='/' ) {
|
|
242
|
+
let ne = text.indexOf( '\n', i+2 );
|
|
243
|
+
if( ne<0 ) {
|
|
244
|
+
ne = text.length;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
result += `<span class="cmt">${this._escape(text.substring( i, ne ))}</span>`;
|
|
248
|
+
i = ne;
|
|
249
|
+
continue;
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
// punctuation
|
|
254
|
+
if( rePUNC.test(c) ) {
|
|
255
|
+
s = i;
|
|
256
|
+
do {
|
|
257
|
+
c = text.charAt( ++i );
|
|
258
|
+
} while( rePUNC.test(c) && i<length );
|
|
259
|
+
|
|
260
|
+
result += `<span class="punc">${text.substring( s, i )}</span>`;
|
|
261
|
+
continue;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
// strings
|
|
265
|
+
if( c=='"' || c=='\'' || c=='\`' ) {
|
|
266
|
+
s = i;
|
|
267
|
+
|
|
268
|
+
let delim = c;
|
|
269
|
+
do {
|
|
270
|
+
c = text.charAt( ++i );
|
|
271
|
+
} while( c!=delim && i<length );
|
|
272
|
+
|
|
273
|
+
result += `<span class="str">${this._escape(text.substring( s, ++i ))}</span>`;
|
|
274
|
+
continue;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
i++;
|
|
278
|
+
result += c;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
console.timeEnd( "hilite" );
|
|
282
|
+
return result + '\n\n\n';
|
|
283
|
+
}
|
|
284
|
+
}
|
package/src/toaster.ts
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ___ ___ __
|
|
3
|
+
* \ \_/ / / _
|
|
4
|
+
* \ / /_| |_
|
|
5
|
+
* / _ \____ _|
|
|
6
|
+
* /__/ \__\ |_|
|
|
7
|
+
*
|
|
8
|
+
* @file toaster.ts
|
|
9
|
+
* @author Etienne Cochard
|
|
10
|
+
* @license
|
|
11
|
+
* Copyright (c) 2019-2021 R-libre ingenierie
|
|
12
|
+
*
|
|
13
|
+
* This program is free software; you can redistribute it and/or modify
|
|
14
|
+
* it under the terms of the GNU General Public License as published by
|
|
15
|
+
* the Free Software Foundation; either version 3 of the License, or
|
|
16
|
+
* (at your option) any later version.
|
|
17
|
+
*
|
|
18
|
+
* This program is distributed in the hope that it will be useful,
|
|
19
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
20
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
21
|
+
* GNU General Public License for more details.
|
|
22
|
+
*
|
|
23
|
+
* You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
24
|
+
**/
|
|
25
|
+
|
|
26
|
+
import { IconID } from './icon';
|
|
27
|
+
import { Label } from "./label";
|
|
28
|
+
import { Popup, PopupProps} from './popup';
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
export interface ToasterProps extends PopupProps {
|
|
32
|
+
message: string;
|
|
33
|
+
icon?: IconID;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export class Toaster extends Popup<ToasterProps> {
|
|
37
|
+
|
|
38
|
+
private m_message: string;
|
|
39
|
+
private m_icon: IconID;
|
|
40
|
+
|
|
41
|
+
constructor( props: ToasterProps ) {
|
|
42
|
+
super( props );
|
|
43
|
+
|
|
44
|
+
this.m_message = props.message;
|
|
45
|
+
this.m_icon = props.icon;
|
|
46
|
+
this.enableMask( false );
|
|
47
|
+
this.addClass( '@non-maskable' );
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
/** @ignore */
|
|
51
|
+
render( ) {
|
|
52
|
+
this.addClass( '@hlayout' );
|
|
53
|
+
this.setContent( [
|
|
54
|
+
new Label( { icon: this.m_icon, text: this.m_message } )
|
|
55
|
+
]);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
show( ) {
|
|
59
|
+
this.show = super.show;
|
|
60
|
+
this.displayAt( 9999, 9999, 'br', {x:0,y:-24} );
|
|
61
|
+
|
|
62
|
+
let opacity = 1.0;
|
|
63
|
+
|
|
64
|
+
this.startTimer( 'fadeout', 2000, false, ( ) => {
|
|
65
|
+
|
|
66
|
+
this.startTimer( 'opacity', 100, true, ( ) => {
|
|
67
|
+
this.setStyleValue( 'opacity', opacity );
|
|
68
|
+
opacity -= 0.1;
|
|
69
|
+
|
|
70
|
+
if( opacity<0 ) {
|
|
71
|
+
this.dispose( );
|
|
72
|
+
}
|
|
73
|
+
});
|
|
74
|
+
} );
|
|
75
|
+
}
|
|
76
|
+
}
|