Skip to content

Instantly share code, notes, and snippets.

@rruhlen
Last active February 28, 2017 03:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rruhlen/74dc56f81ee63057dc30 to your computer and use it in GitHub Desktop.
Save rruhlen/74dc56f81ee63057dc30 to your computer and use it in GitHub Desktop.
How to pass in data into an already initialized Desk widget.
var opts = { fields: { currentUserName: 'Guest' }};
var widget = new DESK.Widget(opts);
opts['fields']['currentUserName'] = 'Joe';
widget.init(opts);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment