5

Is there a way to auto populate your own text in the textbox that you type in your post/comment? For example a hashtag or such? Using Yammer embed

I used to be able to do so with JavaScript/jQuery but with the recent API update I am no longer able to do so.

jlking
  • 73
  • 6

1 Answers1

1

You can set the promptText in the config. This example is from the documentation:

yam.connect.embedFeed({
 container: "#embedded-feed",
 feedType: "open-graph",
 config: {
   promptText: "Comment on this customer"
 }
});
Brian Lyttle
  • 14,558
  • 15
  • 68
  • 104