mam 1.11.725 → 1.11.727
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/node.test.js +9 -3
- package/node.test.js.map +1 -1
- package/package.json +1 -1
package/node.test.js
CHANGED
|
@@ -13275,6 +13275,9 @@ var $;
|
|
|
13275
13275
|
if(next !== undefined) return next;
|
|
13276
13276
|
return null;
|
|
13277
13277
|
}
|
|
13278
|
+
activate(next){
|
|
13279
|
+
return (this.event_activate(next));
|
|
13280
|
+
}
|
|
13278
13281
|
clicks(next){
|
|
13279
13282
|
if(next !== undefined) return next;
|
|
13280
13283
|
return null;
|
|
@@ -13283,6 +13286,9 @@ var $;
|
|
|
13283
13286
|
if(next !== undefined) return next;
|
|
13284
13287
|
return null;
|
|
13285
13288
|
}
|
|
13289
|
+
key_press(next){
|
|
13290
|
+
return (this.event_key_press(next));
|
|
13291
|
+
}
|
|
13286
13292
|
disabled(){
|
|
13287
13293
|
return false;
|
|
13288
13294
|
}
|
|
@@ -13312,9 +13318,9 @@ var $;
|
|
|
13312
13318
|
event(){
|
|
13313
13319
|
return {
|
|
13314
13320
|
...(super.event()),
|
|
13315
|
-
"click": (next) => (this.
|
|
13321
|
+
"click": (next) => (this.activate(next)),
|
|
13316
13322
|
"dblclick": (next) => (this.clicks(next)),
|
|
13317
|
-
"keydown": (next) => (this.
|
|
13323
|
+
"keydown": (next) => (this.key_press(next))
|
|
13318
13324
|
};
|
|
13319
13325
|
}
|
|
13320
13326
|
attr(){
|
|
@@ -13420,7 +13426,7 @@ var $;
|
|
|
13420
13426
|
}
|
|
13421
13427
|
event_key_press(event) {
|
|
13422
13428
|
if (event.keyCode === $mol_keyboard_code.enter) {
|
|
13423
|
-
return this.
|
|
13429
|
+
return this.activate(event);
|
|
13424
13430
|
}
|
|
13425
13431
|
}
|
|
13426
13432
|
tab_index() {
|