Commit 171e257c authored by Christoph Scholz's avatar Christoph Scholz Committed by JC Brand

make default paths in notifications relative

parent 609995c7
......@@ -3,6 +3,7 @@
## 4.0.5 (Unreleased)
- `FATAL: TypeError: Cannot read property 'extend' of undefined` when using `embedded` view mode.
- default paths in converse-notifications.js are now relative
## 4.0.4 (2018-10-29)
......
......@@ -1008,7 +1008,7 @@ certain rooms.
notification_icon
-----------------
* Default: ``'/logo/conversejs.png'``
* Default: ``'logo/conversejs-filled.svg'``
This option specifies which icon is shown in HTML5 notifications, as provided
by the ``src/converse-notification.js`` plugin.
......@@ -1291,7 +1291,7 @@ If set to ``true``, a button will be visible which can be clicked to send a mess
sounds_path
-----------
* Default: ``/sounds/``
* Default: ``sounds/``
This option only makes sense in conjunction with the `play_sounds`_ option and
specifies the URL of the sound files to be played (exluding the file names
......
......@@ -32,8 +32,8 @@ converse.plugins.add('converse-notification', {
chatstate_notification_blacklist: [],
// ^ a list of JIDs to ignore concerning chat state notifications
play_sounds: true,
sounds_path: '/sounds/',
notification_icon: '/logo/conversejs-filled.svg'
sounds_path: 'sounds/',
notification_icon: 'logo/conversejs-filled.svg'
});
_converse.isOnlyChatStateNotification = (msg) =>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment