ninegrid2 6.1262.0 → 6.1264.0
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/dist/bundle.cjs.js +1 -0
- package/dist/bundle.esm.js +1 -0
- package/dist/nx/nxButtons.js +1 -0
- package/package.json +1 -1
- package/src/nx/nxButtons.js +1 -0
package/dist/bundle.cjs.js
CHANGED
|
@@ -122282,6 +122282,7 @@ class nxButtons extends nxDiv {
|
|
|
122282
122282
|
|
|
122283
122283
|
const actionName = btn.getAttribute('on-click') || btn.getAttribute('onClick') || btn.getAttribute('onclick');
|
|
122284
122284
|
console.log(actionName, this[actionName]);
|
|
122285
|
+
console.log(typeof this[actionName]);
|
|
122285
122286
|
if (actionName) {
|
|
122286
122287
|
// 1. 먼저 엘리먼트 자체(this)에 해당 이름의 함수가 있는지 확인
|
|
122287
122288
|
if (typeof this[actionName] === 'function') {
|
package/dist/bundle.esm.js
CHANGED
|
@@ -122278,6 +122278,7 @@ class nxButtons extends nxDiv {
|
|
|
122278
122278
|
|
|
122279
122279
|
const actionName = btn.getAttribute('on-click') || btn.getAttribute('onClick') || btn.getAttribute('onclick');
|
|
122280
122280
|
console.log(actionName, this[actionName]);
|
|
122281
|
+
console.log(typeof this[actionName]);
|
|
122281
122282
|
if (actionName) {
|
|
122282
122283
|
// 1. 먼저 엘리먼트 자체(this)에 해당 이름의 함수가 있는지 확인
|
|
122283
122284
|
if (typeof this[actionName] === 'function') {
|
package/dist/nx/nxButtons.js
CHANGED
|
@@ -33,6 +33,7 @@ class nxButtons extends nxDiv {
|
|
|
33
33
|
|
|
34
34
|
const actionName = btn.getAttribute('on-click') || btn.getAttribute('onClick') || btn.getAttribute('onclick');
|
|
35
35
|
console.log(actionName, this[actionName])
|
|
36
|
+
console.log(typeof this[actionName])
|
|
36
37
|
if (actionName) {
|
|
37
38
|
// 1. 먼저 엘리먼트 자체(this)에 해당 이름의 함수가 있는지 확인
|
|
38
39
|
if (typeof this[actionName] === 'function') {
|
package/package.json
CHANGED
package/src/nx/nxButtons.js
CHANGED
|
@@ -33,6 +33,7 @@ class nxButtons extends nxDiv {
|
|
|
33
33
|
|
|
34
34
|
const actionName = btn.getAttribute('on-click') || btn.getAttribute('onClick') || btn.getAttribute('onclick');
|
|
35
35
|
console.log(actionName, this[actionName])
|
|
36
|
+
console.log(typeof this[actionName])
|
|
36
37
|
if (actionName) {
|
|
37
38
|
// 1. 먼저 엘리먼트 자체(this)에 해당 이름의 함수가 있는지 확인
|
|
38
39
|
if (typeof this[actionName] === 'function') {
|