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

4405.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.js Fri Apr 21 20:03:32 2017 UTC

4405.2 Comparison summary

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

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

4405.4 Active regular expressions

No regular expressions were active.

4405.5 Comparison detail

        1   //  File.. .......... : dropdown .js
        2   //  Descri ption..... : JavaScri pt functio n for left -side navi gation fly outs
        3   //  Versio n......... : 1.2
        4   //  Releas e Date.... .: Decembe r 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           1. 2 - July 1 1, 2006
        11                    Adde d code for  pop-up cu stomer sat isfaction  survey.
        12                    Adde d code to  allow for  proper dis play of fl youts even  when Oper a identifi es itself  as IE
        13   */
        14   var sfHove r = functi on() {
        15           if  (navigato r.appName  == "Micros oft Intern et Explore r") {
        16                    var  cvrEls = d ocument.ge tElementBy Id("nav"). getElement sByTagName ("IFRAME") ;
        17                    for  (var j=0;  j<cvrEls.l ength; j++ ) {
        18                             cvrEls [j].onmous eover=func tion() {
        19                                      this.cla ssName+="  sfhover";
        20                             }
        21                             cvrEls [j].onmous eout=funct ion() {
        22                                      this.cla ssName=thi s.classNam e.replace( new RegExp (" sfhover \\b"), "") ;
        23                             }
        24                    }
        25           }
        26           va r sfEls =  document.g etElementB yId("nav") .getElemen tsByTagNam e("LI");
        27           fo r (var i=0 ; i<sfEls. length; i+ +) {
        28                    sfEl s[i].onmou seover=fun ction() {
        29                             this.c lassName+= " sfhover" ;
        30                    }
        31                    sfEl s[i].onmou seout=func tion() {
        32                             this.c lassName=t his.classN ame.replac e(new RegE xp(" sfhov er\\b"), " ");
        33                    }
        34           }
        35   }
        36   if (window .attachEve nt) window .attachEve nt("onload ", sfHover );