353. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 12/7/2018 11:36:22 AM Central Standard Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

353.1 Files compared

# Location File Last Modified
1 C:\SCRUB\MHED\MHED\VATS 2.3.0\var-utility-web-2.3.0@19406cb7810\app\src\ui-components\form\controls\core\form-control-wrapper form-control-wrapper_directive.js Thu Sep 13 18:55:48 2018 UTC
2 C:\MHED-scrubbed\MHED\MHED\VATS 2.3.0\var-utility-web-2.3.0@19406cb7810\app\src\ui-components\form\controls\core\form-control-wrapper form-control-wrapper_directive.js Fri Dec 7 13:50:08 2018 UTC

353.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 42
Changed 1 2
Inserted 0 0
Removed 0 0

353.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

353.4 Active regular expressions

No regular expressions were active.

353.5 Comparison detail

  1   define(['a pp', 'angu lar'], fun ction (app , angular)  {
  2  
  3         app.direct ive('f DNS     trolWrappe r', functi on (ErrorH andling) {
  4           re turn {
  5                restrict : 'A',
  6                require:  ['^ngMode l', '^form '],
  7                link:fun ction(scop e, elem, a ttrs, cont rollers) {
  8                    var  ngModelCtr l = contro llers[0];
  9                    var  parentForm Ctrl = con trollers[1 ];
  10                    
  11                    var  name = ele m.parent() .attr("nam e");
  12                    var  parentScop e = elem.p arent().sc ope();
  13                    name  = name &&  name.inde xOf("{") ! == -1 ? pa rentScope. $eval(name .replace(" {{","").re place("}}" , "")) : n ame;
  14                    pare ntFormCtrl .$removeCo ntrol(ngMo delCtrl);
  15  
  16                    ngMo delCtrl.$n ame = name ;
  17  
  18                    pare ntFormCtrl .$addContr ol(ngModel Ctrl);
  19                }
  20           };
  21       });
  22   });