Advertisement
lexquarkie

Optimaze_NG_refactor

Nov 21st, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. // TOP SCREEN
  3.  
  4.  
  5.  
  6. //      1 Cell Button # Respondents = from template    ./app/assets/apps/admin/templates/pages/projects/show.calculator.html
  7. //               1 Cell Button # Survey => Assesment create
  8. //               1 Cell Button # Survey Options   -   NEW
  9.  
  10. //      2 Cell Button # Survey =  Utilization
  11.                 //      2 Cell Button # Survey =  Utilization  Options  - grep: value: No such file or directory
  12.  
  13.                 //          html from - /app/assets/apps/admin/templates/directives/design-calculator/om-form.html
  14.  
  15.  
  16. //      3 Cell Button #   People requiring seats
  17.                 //   People requiring seats => Options (group radioButton  - Group select)
  18.      
  19.  
  20. //      4 Cell Button #    Design Scenario  = Group radioButton from app/assets/apps/admin/templates/directives/design-calculator/om-form.html
  21.  
  22.  
  23.  
  24. //      
  25.  
  26.  
  27. // BOTTOM SCREEN
  28.  
  29. //      Tab Button #1 Design Calculator - bottom screen
  30.  
  31.  .state('projects_show.calculator', {
  32.                 url: '/calculator',
  33.                 name: 'calculator',
  34.                 templateUrl: '/pages/projects/show.calculator.html',
  35.                 controller: 'ProjectsShowCalculatorController',
  36.                 resolve: requiresAuthentication,
  37.                 title: 'Projects Show - Calculator'
  38.             })
  39.  
  40.  
  41.  
  42.  
  43. //      Tab Button #2 Utilization - bottom screen
  44.  
  45.  .state('projects_show.findings.utilization', {
  46.                 url: '/utilization',
  47.                 name: 'utilization',
  48.                 templateUrl: '/pages/projects/show.findings.utilization.html',
  49.                 controller: 'ProjectsShowFindingsUtilizationController',
  50.                 resolve: requiresAuthentication,
  51.                 title: 'Projects Show - Findings - Utilization'
  52.             })
  53.  
  54. //      Tab Button #3 Survey Results - bottom screen
  55.  
  56. .state('projects_show.findings.summary', {
  57.                 url: '/summary',
  58.                 name: 'summary',
  59.                 templateUrl: '/pages/projects/show.findings.summary.html',
  60.                 controller: 'ProjectsShowFindingsSummaryController',
  61.                 resolve: requiresAuthentication,
  62.                 title: 'Projects Show - Findings - Summary'
  63.             })
  64.  
  65.  
  66.  
  67. //    Tab Button #4  - bottom screen
  68. .state('projects_show.info', {
  69.                 url: '/info',
  70.                 name: 'info',
  71.                 templateUrl: '/pages/projects/show.info.html',
  72.                 controller: 'ProjectsShowInfoController',
  73.                 resolve: requiresAuthentication,
  74.                 title: 'Projects Show - Info'
  75.             })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement