We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe685e3 commit 56bccdfCopy full SHA for 56bccdf
1 file changed
html/chat-room/chat-room.html
@@ -34,12 +34,13 @@
34
var df=true,did='chat-room';
35
36
37
- var debug
+ var debug,input
38
;
39
40
obj.initmod = function(params){
41
42
- debug = mod.rd(params,'debug',debug);
+ debug = mod.rd(params,'debug',debug);
43
+ input = mod.rd(params,'input',input);
44
45
}//initmod
46
@@ -76,8 +77,9 @@
76
77
hdr = mod['chat-room-hdr'];
78
display = mod['chat-room-display'];
79
- hdr.df=display.df=df;
80
+ hdr.df=display.df=input.df=df;
81
display.initmod({poll});
82
+ input.initmod({post});
83
84
85
await mod.auto();
0 commit comments