4404. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 6/9/2017 3:51:36 PM Eastern Daylight 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.

4404.1 Files compared

# Location File Last Modified
1 Fri Jun 9 19:51:36 2017 UTC
2 eHealth_Exch (eHealth Exchange Enhancements) Build 3 docs & code_May_2017.zip\VAP_CIF_CODE0502.zip\VAP_CIF_CODE0502\VAP_CIF_CODE0502\nvap-web\src\main\webapp\vhaoi_files\scripts dropdown-top.js Fri Apr 21 20:03:32 2017 UTC

4404.2 Comparison summary

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

4404.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

4404.4 Active regular expressions

No regular expressions were active.

4404.5 Comparison detail

        1   //  File.. .......... : dropdown -top.js
        2   //  Descri ption..... : JavaScri pt functio n for top  navigation  dropdowns
        3   //  Versio n......... : 1.1
        4   //  Releas e Date.... : December  19, 2005
        5   /*
        6   Updates
        7           1. 1 - Januar y 10, 2006
        8                    Adde d if struc ture to ac tivate an  IFRAME lay ers to pre vent selec t boxes an d embedded  objects f rom showin
        9                    thro ugh the fl youts when  viewed in  Internet  Explorer.
        10   */
        11  
        12   var sfhove rtop = fun ction() {
        13           if  (navigato r.appName  == "Micros oft Intern et Explore r") {
        14                    var  cvrElsTop  = document .getElemen tById("nav -top").get ElementsBy TagName("I FRAME");
        15                    for  (var j=0;  j<cvrElsTo p.length;  j++) {
        16                             cvrEls Top[j].onm ouseover=f unction()  {
        17                                      this.cla ssName+="  sfhovertop ";
        18                             }
        19                             cvrEls Top[j].onm ouseout=fu nction() {
        20                                      this.cla ssName=thi s.classNam e.replace( new RegExp (" sfhover top\\b"),  "");
        21                             }
        22                    }
        23           }
        24           va r sfElsTop  = documen t.getEleme ntById("na v-top").ge tElementsB yTagName(" LI");
        25           fo r (var i=0 ; i<sfElsT op.length;  i++) {
        26                    sfEl sTop[i].on mouseover= function()  {
        27                             this.c lassName+= " sfhovert op";
        28                    }
        29                    sfEl sTop[i].on mouseout=f unction()  {
        30                             this.c lassName=t his.classN ame.replac e(new RegE xp(" sfhov ertop\\b") , "");
        31                    }
        32           }
        33   }
        34   if (window .attachEve nt) window .attachEve nt("onload ", sfhover top);