1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2026-01-03 23:22:30 +03:00

Linting (jsdoc)

This commit is contained in:
Kegan Dougal
2015-10-13 10:20:38 +01:00
parent 2bb65fe644
commit cde948814a
3 changed files with 9 additions and 0 deletions

View File

@@ -130,6 +130,9 @@ RoomMember.prototype.setTypingEvent = function(event) {
}
};
/**
* Update the last modified time to the current time.
*/
RoomMember.prototype._updateModifiedTime = function() {
this._modified = Date.now();
};

View File

@@ -164,6 +164,9 @@ RoomState.prototype.setTypingEvent = function(event) {
});
};
/**
* Update the last modified time to the current time.
*/
RoomState.prototype._updateModifiedTime = function() {
this._modified = Date.now();
};

View File

@@ -74,6 +74,9 @@ User.prototype.setPresenceEvent = function(event) {
}
};
/**
* Update the last modified time to the current time.
*/
User.prototype._updateModifiedTime = function() {
this._modified = Date.now();
};