1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-09-01 21:21:58 +03:00

Fix linting. Mark on new Store classes as WIP.

This commit is contained in:
Kegan Dougal
2015-07-28 11:50:47 +01:00
parent 3905e56e1f
commit 1ef7af258d
2 changed files with 4 additions and 2 deletions

View File

@@ -49,9 +49,11 @@ Crypto infrastructure (crypto is *NOT* available in this version):
New classes: New classes:
* `MatrixCall` * `MatrixCall`
* `WebStorageStore` - *WIP; unstable*
* `WebStorageSessionStore` - *WIP; unstable*
Bug fixes: Bug fixes:
* Member name bugfix: Fixed an issue which prevented RoomMember.name being * Member name bugfix: Fixed an issue which prevented `RoomMember.name` being
disambiguated if there was exactly 1 other person with the same display name. disambiguated if there was exactly 1 other person with the same display name.
* Member name bugfix: Disambiguate both clashing display names with user IDs in * Member name bugfix: Disambiguate both clashing display names with user IDs in
the event of a clash. the event of a clash.

View File

@@ -244,7 +244,7 @@ function PushProcessor(client) {
} }
/** /**
* @typedef PushAction * @typedef {Object} PushAction
* @type {Object} * @type {Object}
* @property {boolean} notify Whether this event should notify the user or not. * @property {boolean} notify Whether this event should notify the user or not.
* @property {Object} tweaks How this event should be notified. * @property {Object} tweaks How this event should be notified.