Produced by Araxis Merge on 6/9/2017 3:51:47 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.
| # | Location | File | Last Modified |
|---|---|---|---|
| 1 | Fri Jun 9 19:51:47 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\WEB-INF\web | slideoutWarning.jspf | Fri Apr 21 20:03:30 2017 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 0 | 0 |
| Changed | 0 | 0 |
| Inserted | 1 | 108 |
| Removed | 0 | 0 |
| 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 |
No regular expressions were active.
| 1 | <%-- | |||||
| 2 | Do cument : Slideout Warning Me ssage Page | |||||
| 3 | --%> | |||||
| 4 | <%@page co ntentType= "text/html " pageEnco ding="UTF- 8"%> | |||||
| 5 | <%@taglib uri="http: //java.sun .com/jsp/j stl/core" prefix="c" %> | |||||
| 6 | <%@taglib uri="http: //java.sun .com/jsp/j stl/functi ons" prefi x="fn"%> | |||||
| 7 | <%@taglib uri="http: //java.sun .com/jsp/j stl/fmt" p refix="fmt "%> | |||||
| 8 | <%@taglib tagdir="/W EB-INF/tag s/cpp" pre fix="cpp"% > | |||||
| 9 | ||||||
| 10 | <style> | |||||
| 11 | ||||||
| 12 | .popup { | |||||
| 13 | ba ckground: #E4E4E4; | |||||
| 14 | border : 1px soli d gray; | |||||
| 15 | color: #083084; | |||||
| 16 | height : auto; | |||||
| 17 | pa dding: 8px ; | |||||
| 18 | po sition: fi xed; | |||||
| 19 | right: 0px; | |||||
| 20 | top: 2 25px; | |||||
| 21 | transf orm: trans late(100%, 0); | |||||
| 22 | width: auto; | |||||
| 23 | -webki t-box-sizi ng: border -box; | |||||
| 24 | -mo z-box-sizi ng: border -box; | |||||
| 25 | -m s-box-sizi ng: border -box; | |||||
| 26 | box-sizi ng: border -box; | |||||
| 27 | -webki t-transiti on: -webki t-transfor m .5s ease ; | |||||
| 28 | -mo z-transiti on: -mo z-transfor m .5s ease ; | |||||
| 29 | -m s-transiti on: -m s-transfor m .5s ease ; | |||||
| 30 | transiti on: transfor m .5s ease ; | |||||
| 31 | ||||||
| 32 | } | |||||
| 33 | ||||||
| 34 | .opened { | |||||
| 35 | -webki t-transfor m: transla te(0%, 0); | |||||
| 36 | -mo z-transfor m: transla te(0%, 0); | |||||
| 37 | -m s-transfor m: transla te(0%, 0); | |||||
| 38 | transfor m: transla te(0%, 0); | |||||
| 39 | ||||||
| 40 | } | |||||
| 41 | ||||||
| 42 | .closed { | |||||
| 43 | -webki t-transfor m: transla te(100%, 0 ); | |||||
| 44 | -mo z-transfor m: transla te(100%, 0 ); | |||||
| 45 | -m s-transfor m: transla te(100%, 0 ); | |||||
| 46 | transfor m: transla te(100%, 0 ); | |||||
| 47 | } | |||||
| 48 | ||||||
| 49 | </style> | |||||
| 50 | ||||||
| 51 | <script la nguage="Ja vaScript"> | |||||
| 52 | functi on flashWa rning(){ | |||||
| 53 | va r hasCssTr ansitionSu pport = de tectCSSFea ture("tran sition"); | |||||
| 54 | va r popup = document.g etElementB yId('popup '); | |||||
| 55 | if (hasCssTr ansitionSu pport === false) { | |||||
| 56 | popup.st yle.displa y = 'none' ; | |||||
| 57 | } | |||||
| 58 | wi ndow.setTi meout(show Popup, 500 ); | |||||
| 59 | ||||||
| 60 | fu nction sho wPopup() { | |||||
| 61 | if (hasC ssTransiti onSupport) { | |||||
| 62 | popu p.classLis t.add('ope ned'); | |||||
| 63 | } else { | |||||
| 64 | popu p.style.di splay = '' ; | |||||
| 65 | } | |||||
| 66 | window.s etTimeout( hidePopup, 4000); | |||||
| 67 | } | |||||
| 68 | ||||||
| 69 | fu nction hid ePopup() { | |||||
| 70 | if (hasC ssTransiti onSupport) { | |||||
| 71 | popu p.classLis t.remove(' opened'); | |||||
| 72 | popu p.classLis t.add('clo sed'); | |||||
| 73 | } else { | |||||
| 74 | popu p.style.di splay = 'n one'; | |||||
| 75 | } | |||||
| 76 | } | |||||
| 77 | ||||||
| 78 | fu nction det ectCSSFeat ure(featur eName){ | |||||
| 79 | var hasF eature = f alse; | |||||
| 80 | var domP refixes = 'Webkit Mo z ms O'.sp lit(' '); | |||||
| 81 | var elem = documen t.createEl ement('div '); | |||||
| 82 | var feat ureNameCap ital = nul l; | |||||
| 83 | ||||||
| 84 | featureN ame = feat ureName.to LowerCase( ); | |||||
| 85 | ||||||
| 86 | if (elem .style[fea tureName] !== undefi ned) { | |||||
| 87 | hasF eature = t rue; | |||||
| 88 | } | |||||
| 89 | ||||||
| 90 | if (!has Feature) { | |||||
| 91 | feat ureNameCap ital = fea tureName.c harAt(0).t oUpperCase () + featu reName.sub str(1); | |||||
| 92 | for (var i = 0 ; i < domP refixes.le ngth; i++) { | |||||
| 93 | if (elem.s tyle[domPr efixes[i] + featureN ameCapital ] !== und efined) { | |||||
| 94 | hasFea ture = tru e; | |||||
| 95 | break; | |||||
| 96 | } | |||||
| 97 | } | |||||
| 98 | } | |||||
| 99 | return h asFeature; | |||||
| 100 | } | |||||
| 101 | } | |||||
| 102 | </script> | |||||
| 103 | ||||||
| 104 | <div id='p opup' clas s="popup"> | |||||
| 105 | Export has start ed. Do not <br> | |||||
| 106 | refres h or leave the page< br> | |||||
| 107 | until the downlo ad has fin ished. | |||||
| 108 | </div> |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.