File tree Expand file tree Collapse file tree 3 files changed +16
-0
lines changed Expand file tree Collapse file tree 3 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ import "./plugins/controlbox/index.js"; // The control box
23
23
import "./plugins/dragresize/index.js" ; // Allows chat boxes to be resized by dragging them
24
24
import "./plugins/fullscreen/index.js" ;
25
25
import "./plugins/headlines-view/index.js" ;
26
+ import "./plugins/jingle/index.js" // Implements the jingle protocol
26
27
import "./plugins/mam-views/index.js" ;
27
28
import "./plugins/minimize/index.js" ; // Allows chat boxes to be minimized
28
29
import "./plugins/muc-views/index.js" ; // Views related to MUC
Original file line number Diff line number Diff line change
1
+ /**
2
+ * @description Converse.js plugin which adds XEP-0166 Jingle
3
+ * @copyright 2022, the Converse.js contributors
4
+ * @license Mozilla Public License (MPLv2)
5
+ */
6
+
7
+ import { converse } from '@converse/headless/core' ;
8
+
9
+ converse . plugins . add ( 'jingle' , {
10
+
11
+ initialize : function ( ) {
12
+
13
+ } ,
14
+ } ) ;
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ export const VIEW_PLUGINS = [
11
11
'converse-dragresize' ,
12
12
'converse-fullscreen' ,
13
13
'converse-headlines-view' ,
14
+ 'converse-jingle' ,
14
15
'converse-mam-views' ,
15
16
'converse-minimize' ,
16
17
'converse-modal' ,
You can’t perform that action at this time.
0 commit comments