Produced by Araxis Merge on 5/30/2019 1:49:18 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 | var_web_release_4_18.zip\var_web_release_4_8_ebb0ab2774d.zip\veteran-appointment-requests\app | app.js | Fri May 10 18:55:49 2019 UTC |
| 2 | var_web_release_4_18.zip\var_web_release_4_8_ebb0ab2774d.zip\veteran-appointment-requests\app | app.js | Wed May 29 22:07:17 2019 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 2 | 182 |
| Changed | 1 | 2 |
| Inserted | 0 | 0 |
| 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 | define([ | |
| 2 | 'under score', | |
| 3 | 'backb one', | |
| 4 | 'mario nette', | |
| 5 | 'model s/faciliti es-collect ion', | |
| 6 | 'colle ctions/fac ility-time zone-colle ction', | |
| 7 | 'colle ctions/fac ility-clin ic-custom- text-colle ction', | |
| 8 | 'model s/patient- enrolled-f acilities' , | |
| 9 | 'model s/patient- identifier s-collecti on', | |
| 10 | 'model s/external -links-col lection', | |
| 11 | 'model s/resource s-collecti on', | |
| 12 | 'model s/user-ses sion', | |
| 13 | 'model s/communit y-care-typ eOfCares-c ollection' , | |
| 14 | 'model s/disabled -features- collection ', | |
| 15 | 'model s/api-keys -model', | |
| 16 | 'model s/configur ation-mode l', | |
| 17 | 'json! featureFla gJson', | |
| 18 | 'model s/communit y-care-eli gibility-c ollection' , | |
| 19 | 'jquer y.mask.con fig', | |
| 20 | 'jquer y.mask', | |
| 21 | 'jqm.c onfig', | |
| 22 | 'jqm', | |
| 23 | ], functio n ( | |
| 24 | _, | |
| 25 | Backbo ne, | |
| 26 | Marion ette, | |
| 27 | Facili ties, | |
| 28 | Facili tyTimezone s, | |
| 29 | Facili tyClinicCu stomText, | |
| 30 | Patien tEnrolledF acilities, | |
| 31 | Patien tIdentifer s, | |
| 32 | Extern alLinks, | |
| 33 | Resour ces, | |
| 34 | UserSe ssion, | |
| 35 | CCType OfCares, | |
| 36 | Disabl edFeatures , | |
| 37 | ApiKey s, | |
| 38 | Config urations, | |
| 39 | Featur eFlagJson, | |
| 40 | CCElig ibilityCol lection | |
| 41 | ) { | |
| 42 | 'use s trict'; | |
| 43 | ||
| 44 | ||
| 45 | var Ap p = Marion ette.Appli cation.ext end({ | |
| 46 | co nfiguratio ns: new Co nfiguratio ns(), | |
| 47 | ap iKeys: new ApiKeys() , | |
| 48 | cc TypeOfCare s: new CCT ypeOfCares (), | |
| 49 | di sabledFeat ures: new DisabledFe atures(), | |
| 50 | ex ternalLink s: new Ext ernalLinks (), | |
| 51 | fa cilities: new Facili ties(), | |
| 52 | fa cilityTime zones: new FacilityT imezones() , | |
| 53 | fa cilityClin icCustomTe xt: new Fa cilityClin icCustomTe xt(), | |
| 54 | ma inLayoutMo del: new B ackbone.Mo del({hasAp pMenu: fal se}), | |
| 55 | pa tientEnrol ledFacilit ies: new P atientEnro lledFacili ties(), | |
| 56 | pa tientIdent ifiers: ne w PatientI dentifers( ), | |
| 57 | re sources: n ew Resourc es(), | |
| 58 | sh owingConte nt: new $. Deferred() , | |
| 59 | cc Eligibilit yCollectio n: new CCE ligibility Collection (), | |
| 60 | ||
| 61 | on BeforeStar t: functio n() { | |
| 62 | this.use rSession = new UserS ession({jw tTokenUrl: this.reso urces.get( 'token').g et('href') }); | |
| 63 | }, | |
| 64 | ||
| 65 | on Start: fun ction() { | |
| 66 | // TODO Move thing s here | |
| 67 | ||
| 68 | }, | |
| 69 | ||
| 70 | is CcEligFeat ureEnabled : function () { | |
| 71 | var json Model = ne w Backbone .Model(Fea tureFlagJs on); | |
| 72 | var feat ureFlagExi sts = json Model.has( 'CC_ELIG_S ERVICE_DIS ABLED'); | |
| 73 | var elig ServiceDis abled = js onModel.ge t('CC_ELIG _SERVICE_D ISABLED'); | |
| 74 | if (feat ureFlagExi sts) { | |
| 75 | retu rn (!eligS erviceDisa bled); | |
| 76 | } | |
| 77 | return f alse; // d efault - e ligibility feature i s not enab led | |
| 78 | }, | |
| 79 | ||
| 80 | ge tLaunchpad Url: funct ion() { | |
| 81 | var json Model = ne w Backbone .Model(Fea tureFlagJs on); | |
| 82 | var laun chpadUrlEx ists = jso nModel.has ('LAUNCHPA D_URL'); | |
| 83 | ||
| 84 | return ( launchpadU rlExists) ? | |
| 85 | json Model.get( 'LAUNCHPAD _URL') : | |
| 86 | 'https:// DNS . URL /launchpad '; | |
| 87 | }, | |
| 88 | }); | |
| 89 | ||
| 90 | ||
| 91 | return new App() ; | |
| 92 | }); |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.