1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-09-04 19:42:11 +03:00

JSDoc linkify

This commit is contained in:
Kegan Dougal
2015-10-19 14:37:17 +01:00
parent f26154d0ac
commit 2f9958cca9
4 changed files with 9 additions and 2 deletions

View File

@@ -1,3 +1,6 @@
/**
* @module content-repo
*/
var utils = require("./utils"); var utils = require("./utils");
module.exports = { module.exports = {

View File

@@ -30,6 +30,8 @@ module.exports.MatrixScheduler = require("./scheduler");
module.exports.WebStorageSessionStore = require("./store/session/webstorage"); module.exports.WebStorageSessionStore = require("./store/session/webstorage");
/** True if crypto libraries are being used on this client. */ /** True if crypto libraries are being used on this client. */
module.exports.CRYPTO_ENABLED = require("./client").CRYPTO_ENABLED; module.exports.CRYPTO_ENABLED = require("./client").CRYPTO_ENABLED;
/** {@link module:content-repo|ContentRepo} utility functions. */
module.exports.ContentRepo = require("./content-repo");
/** /**
* Create a new Matrix Call. * Create a new Matrix Call.

View File

@@ -150,7 +150,8 @@ RoomMember.prototype.getLastModifiedTime = function() {
/** /**
* Get the avatar URL for a room member. * Get the avatar URL for a room member.
* @param {string} baseUrl The base homeserver URL * @param {string} baseUrl The base homeserver URL See
* {@link module:client~MatrixClient#getHomeserverUrl}.
* @param {Number} width The desired width of the thumbnail. * @param {Number} width The desired width of the thumbnail.
* @param {Number} height The desired height of the thumbnail. * @param {Number} height The desired height of the thumbnail.
* @param {string} resizeMethod The thumbnail resize method to use, either * @param {string} resizeMethod The thumbnail resize method to use, either

View File

@@ -42,7 +42,8 @@ utils.inherits(Room, EventEmitter);
/** /**
* Get the avatar URL for a room if one was set. * Get the avatar URL for a room if one was set.
* @param {String} baseUrl The homeserver base URL. See {@link MatrixClient#getHomeserverUrl()}. * @param {String} baseUrl The homeserver base URL. See
* {@link module:client~MatrixClient#getHomeserverUrl}.
* @param {Number} width The desired width of the thumbnail. * @param {Number} width The desired width of the thumbnail.
* @param {Number} height The desired height of the thumbnail. * @param {Number} height The desired height of the thumbnail.
* @param {string} resizeMethod The thumbnail resize method to use, either * @param {string} resizeMethod The thumbnail resize method to use, either