You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 4, 2026. It is now read-only.
@@ -3028,7 +3033,7 @@ var DatePicker = defineClass(
3028
3033
* @property {HTMLElement[]} dateElements - elements for dates
3029
3034
* @example
3030
3035
* // bind the 'draw' event
3031
-
* datepicker.on('draw', function(event) {
3036
+
* datepicker.on('draw', (event) => {
3032
3037
* console.log(`Draw the ${event.type} calendar and its date is ${event.date}.`);
3033
3038
* });
3034
3039
*
@@ -3311,7 +3316,7 @@ var DatePicker = defineClass(
3311
3316
* @see Refer to {@link https://nhn.github.io/tui.code-snippet/latest/CustomEvents CustomEvents from tui-code-snippet} for more methods. DatePicker mixes in the methods from CustomEvents.
3312
3317
* @example
3313
3318
* // bind the 'open' event
3314
-
* datepicker.on('open', function() {
3319
+
* datepicker.on('open', () => {
3315
3320
* alert('open');
3316
3321
* });
3317
3322
*
@@ -3387,7 +3392,7 @@ var DatePicker = defineClass(
3387
3392
* @see Refer to {@link https://nhn.github.io/tui.code-snippet/latest/CustomEvents CustomEvents from tui-code-snippet} for more methods. DatePicker mixes in the methods from CustomEvents.
3388
3393
* @example
3389
3394
* // bind the 'close' event
3390
-
* datepicker.on('close', function() {
3395
+
* datepicker.on('close', () => {
3391
3396
* alert('close');
3392
3397
* });
3393
3398
*
@@ -3462,7 +3467,7 @@ var DatePicker = defineClass(
3462
3467
* @see Refer to {@link https://nhn.github.io/tui.code-snippet/latest/CustomEvents CustomEvents from tui-code-snippet} for more methods. DatePicker mixes in the methods from CustomEvents.
@@ -7333,7 +7354,7 @@ var DateRangePicker = defineClass(
7333
7354
* @see Refer to {@link https://nhn.github.io/tui.code-snippet/latest/CustomEvents CustomEvents} for more methods. DateRangePicker mixes in the methods from CustomEvents.
@@ -7356,16 +7377,73 @@ var DateRangePicker = defineClass(
7356
7377
* @see Refer to {@link https://nhn.github.io/tui.code-snippet/latest/CustomEvents CustomEvents} for more methods. DateRangePicker mixes in the methods from CustomEvents.
0 commit comments