We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 068fd71 commit 230e4b9Copy full SHA for 230e4b9
1 file changed
html/chat-room/html/chat-room-display/chat-room-display.html
@@ -57,14 +57,15 @@
57
58
var df=false,did='chat-room-display';
59
60
- var $,debug,poll
+ var $,debug,poll,input
61
;
62
63
obj.initmod = function(params){
64
65
debug = mod.rd(params,'debug',debug);
66
$ = mod.rd(params,'$',$);
67
poll = mod.rd(params,'poll',poll);
68
+ input = mod.rd(params,'input',input);
69
70
}//initmod
71
@@ -213,7 +214,7 @@
213
214
215
async function del(){
216
- var password = $(shadow,'#password').value;
217
+ var password = input.password;
218
var result = await post.del({password,id})
219
if(!result)return;
220
0 commit comments