make default paths in notifications relative

This commit is contained in:
Christoph Scholz 2018-11-02 22:16:56 +01:00 committed by JC Brand
parent 609995c767
commit 171e257c22
3 changed files with 5 additions and 4 deletions

View File

@ -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)

View File

@ -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

View File

@ -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) =>