Backport: linkify emotes

pull/21833/head
David Baker 2015-09-16 16:23:35 +01:00
parent f3b30477ce
commit 88aaf82c88
1 changed files with 9 additions and 0 deletions

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);
}
};