File tree Expand file tree Collapse file tree
html/chat-room/html/chat-room-display Expand file tree Collapse file tree Original file line number Diff line number Diff line change 108108 obj . init = async function ( ) {
109109 debug = eval ( debug . mod ) ;
110110 debug ( 'init' ) ;
111- obj . list = display . list ;
112- obj . result = display . result ;
113- obj . node = display . node ;
114-
111+
115112 } //init
116113
117114
132129 //:
133130
134131
132+ obj . node = function ( ) { return display . node . apply ( null , arguments ) }
133+
135134 display . node = function ( { msg_id} ) {
136135
137136 var nmsg = msg . cloneNode ( true ) ;
156155 } //node
157156
158157
158+ obj . result = function ( ) { return display . result . apply ( null , arguments ) }
159+
159160 display . result = function ( { list} ) {
160161
161162 display . list ( list )
167168 } //result
168169
169170
171+ obj . list = function ( ) { return display . list . apply ( null , arguments ) }
172+
170173 display . list = function ( list ) {
171174 console . json ( list ) ;
172175 list . forEach ( item => {
You can’t perform that action at this time.
0 commit comments