Le SELECT du choix de rôle devient un radio
This commit is contained in:
22
node_modules/wrtc/lib/datachannelevent.js
generated
vendored
Normal file
22
node_modules/wrtc/lib/datachannelevent.js
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
'use strict';
|
||||
|
||||
function RTCDataChannelEvent(type, eventInitDict) {
|
||||
Object.defineProperties(this, {
|
||||
bubbles: {
|
||||
value: false
|
||||
},
|
||||
cancelable: {
|
||||
value: false
|
||||
},
|
||||
type: {
|
||||
value: type,
|
||||
enumerable: true
|
||||
},
|
||||
channel: {
|
||||
value: eventInitDict.channel,
|
||||
enumerable: true
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
module.exports = RTCDataChannelEvent;
|
||||
Reference in New Issue
Block a user