Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
json rawTabContent() {
  json tabContent = "{}";
  // Logic that populates the widget content goes here
  ...
  return tabContent;
}
Code Block
stringDSL_VIEW tabAction(json actionContent) {
  // Logic based on the actionContent goes here
  ...
  return DSL_VIEWS.TheNextView;
}

...