We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7551555 commit e7eca15Copy full SHA for e7eca15
.gitignore
@@ -1,2 +1,2 @@
1
node_modules
2
-*.log
+*.log
src/index.js
@@ -53,18 +53,7 @@ module.exports = React.createClass({
53
initialValue: this.props.value,
54
autoSuggest: {
55
mode: 'markdown',
56
- triggers: {
57
- '@': function(stringToTest) {
58
- return [];
59
- },
60
- '#': function(stringToTest) {
61
- return [
62
- { text: 'Two Sum ', displayText: 'Two Sum' },
63
- { text: '3Sum ', displayText: '3Sum' },
64
- { text: '4Sum ', displayText: '4Sum' },
65
- ];
66
67
+ triggers: this.props.mentions,
68
},
69
};
70
0 commit comments