Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. var fbScope = angular.element('#form-builder').scope();
  2. fbScope.formComponentGroups.existing = {
  3. title: 'Existing Fields',
  4. panelClass: 'subgroup-accordion-container',
  5. subgroups: {}
  6. };
  7. fbScope.formComponentsByGroup.existing = {
  8. 'firstName': {
  9. type: 'textfield',
  10. key: 'firstName',
  11. label: 'First Name'
  12. ...
  13. ...
  14. },
  15. 'lastName': {
  16. type: 'textfield',
  17. key: 'lastName',
  18. label: 'Last Name'
  19. ...
  20. ...
  21. }
  22. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement