Backport: linkify emotes

This commit is contained in:
David Baker 2015-09-16 16:23:35 +01:00
parent f3b30477ce
commit 88aaf82c88

View file

@ -16,6 +16,15 @@ limitations under the License.
'use strict';
var linkify = require('linkifyjs');
var linkifyElement = require('linkifyjs/element');
var linkifyMatrix = require('../../linkify-matrix');
linkifyMatrix(linkify);
module.exports = {
componentDidMount: function() {
linkifyElement(this.refs.content.getDOMNode(), linkifyMatrix.options);
}
};