How to use unhide method in Mocha

Best JavaScript code snippet using mocha

util.js

Source:util.js Github

copy

Full Screen

1/*global atob, unescape, Uint8Array, Blob*/2function setupTestHelpers() {3 jasmine.clock().install();4 this.elements = [];5 this.editors = [];6 this.createElement = function (tag, className, html, dontAppend) {7 var el = document.createElement(tag);8 el.innerHTML = html || '';9 if (className) {10 el.className = className;11 }12 this.elements.push(el);13 if (!dontAppend) {14 document.body.appendChild(el);15 }16 return el;17 };18 this.newMediumEditor = function (selector, options) {19 var editor = new MediumEditor(selector, options);20 this.editors.push(editor);21 return editor;22 };23 this.cleanupTest = function () {24 this.editors.forEach(function (editor) {25 editor.destroy();26 });27 this.elements.forEach(function (element) {28 if (element.parentNode) {29 element.parentNode.removeChild(element);30 }31 });32 jasmine.clock().uninstall();33 delete this.createElement;34 delete this.createMedium;35 delete this.elements;36 delete this.editors;37 delete this.cleanupTest;38 }39}40function isIE9() {41 return navigator.appName.indexOf('Internet Explorer') !== -1 && navigator.appVersion.indexOf("MSIE 9") !== -1;42}43function isIE10() {44 return navigator.appName.indexOf('Internet Explorer') !== -1 && navigator.appVersion.indexOf("MSIE 10") !== -1;45}46function isOldIE() {47 return isIE9() || isIE10();48}49function isIE() {50 return ((navigator.appName === 'Microsoft Internet Explorer') || ((navigator.appName === 'Netscape') && (new RegExp('Trident/.*rv:([0-9]{1,}[.0-9]{0,})').exec(navigator.userAgent) !== null)));51}52// If the browser is Edge, returns the version number as a float, otherwise returns 053function getEdgeVersion() {54 var match = /Edge\/(\d+[,.]\d+)/.exec(navigator.userAgent);55 if (match !== null) {56 return +match[1];57 }58 return 0;59}60function isFirefox() {61 return navigator.userAgent.toLowerCase().indexOf('firefox') !== -1;62}63function isSafari() {64 return navigator.userAgent.toLowerCase().indexOf('safari') !== -1;65}66function dataURItoBlob(dataURI) {67 // convert base64/URLEncoded data component to raw binary data held in a string68 var byteString,69 mimeString,70 ia,71 i;72 if (dataURI.split(',')[0].indexOf('base64') >= 0) {73 byteString = atob(dataURI.split(',')[1]);74 } else {75 byteString = unescape(dataURI.split(',')[1]);76 }77 // separate out the mime component78 mimeString = dataURI.split(',')[0].split(':')[1].split(';')[0];79 // write the bytes of the string to a typed array80 ia = new Uint8Array(byteString.length);81 for (i = 0; i < byteString.length; i += 1) {82 ia[i] = byteString.charCodeAt(i);83 }84 return new Blob([ia], {type: mimeString});85}86// keyCode, ctrlKey, target, relatedTarget, shiftKey, altKey87function fireEvent(element, eventName, options) {88 var evt = prepareEvent(89 element,90 eventName,91 options92 );93 return firePreparedEvent(evt, element, eventName);94}95/**96 * prepareEvent works with firePreparedEvent.97 *98 * It allows test to:99 * - create the event100 * - spy a method on this event101 * - fire the event102 *103 * Example:104 * var p = document.querySelector('p');105 * var evt = prepareEvent(p, 'keydown', { keyCode: MediumEditor.util.keyCode.ENTER });106 * spyOn(evt, 'preventDefault').and.callThrough();107 * firePreparedEvent(evt, p, 'keydown');108 * expect(evt.preventDefault).toHaveBeenCalled();109 *110 * You can see a live example for tests related to `disableDoubleReturn`111 */112function prepareEvent (element, eventName, options) {113 var evt;114 options = options || {};115 if (document.createEvent) {116 // dispatch for firefox + others117 evt = document.createEvent('HTMLEvents');118 evt.initEvent(eventName, true, true); // event type,bubbling,cancelable119 evt.currentTarget = options.currentTarget ? options.currentTarget : element;120 if (options.keyCode) {121 evt.keyCode = options.keyCode;122 evt.which = options.keyCode;123 }124 if (options.ctrlKey) {125 evt.ctrlKey = true;126 }127 if (options.metaKey) {128 evt.metaKey = true;129 }130 if (options.target) {131 evt.target = options.target;132 }133 if (options.relatedTarget) {134 evt.relatedTarget = options.relatedTarget;135 }136 if (options.shiftKey) {137 evt.shiftKey = true;138 }139 if (options.altKey) {140 evt.altKey = true;141 }142 if (eventName.indexOf('drag') !== -1 || eventName === 'drop') {143 evt.dataTransfer = {144 dropEffect: ''145 };146 // File API only allows access to 'files' on drop, not on any other event147 if (!isIE9() && eventName === 'drop') {148 var file = dataURItoBlob('data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7');149 if (!file.type) {150 file.type = 'image/gif';151 }152 evt.dataTransfer.files = [file];153 }154 }155 } else {156 // dispatch for IE157 evt = document.createEventObject();158 }159 return evt;160}161/**162 * @see prepareEvent163 */164function firePreparedEvent (event, element, eventName) {165 if (document.createEvent) {166 return !element.dispatchEvent(event);167 }168 return element.fireEvent('on' + eventName, event);169}170function placeCursorInsideElement(el, index) {171 var selection = window.getSelection(),172 newRange = document.createRange();173 selection.removeAllRanges();174 newRange.setStart(el, index);175 selection.addRange(newRange);176}177function selectElementContents(el, options) {178 options = options || {};179 var range = document.createRange(),180 sel = window.getSelection();181 range.selectNodeContents(el);182 if (options.collapse) {183 range.collapse(options.collapse === true);184 }185 sel.removeAllRanges();186 sel.addRange(range);187}188function selectElementContentsAndFire(el, options) {189 options = options || {};190 selectElementContents(el, options);191 fireEvent(el, options.eventToFire || 'click');192 if (options.testDelay !== -1) {193 if (!options.testDelay) {194 jasmine.clock().tick(1);195 } else {196 jasmine.clock().tick(options.testDelay);197 }198 }199}200var WORD_PASTE_EXAMPLE = ['<html xmlns:o="urn:schemas-microsoft-com:office:office"',201'xmlns:w="urn:schemas-microsoft-com:office:word"',202'xmlns:m="http://schemas.microsoft.com/office/2004/12/omml"',203'xmlns="http://www.w3.org/TR/REC-html40">',204'',205'<head>',206'<meta name=Title content="">',207'<meta name=Keywords content="">',208'<meta http-equiv=Content-Type content="text/html; charset=utf-8">',209'<meta name=ProgId content=Word.Document>',210'<meta name=Generator content="Microsoft Word 15">',211'<meta name=Originator content="Microsoft Word 15">',212'<link rel=File-List',213'href="file://localhost/Users/nate/Library/Group%20Containers/UBF8T346G9.Office/msoclip1/01/clip_filelist.xml">',214'<!--[if gte mso 9]><xml>',215' <o:OfficeDocumentSettings>',216' <o:AllowPNG/>',217' </o:OfficeDocumentSettings>',218'</xml><![endif]-->',219'<link rel=themeData',220'href="file://localhost/Users/nate/Library/Group%20Containers/UBF8T346G9.Office/msoclip1/01/clip_themedata.thmx">',221'<!--[if gte mso 9]><xml>',222' <w:WordDocument>',223' <w:View>Normal</w:View>',224' <w:Zoom>0</w:Zoom>',225' <w:TrackMoves/>',226' <w:TrackFormatting/>',227' <w:PunctuationKerning/>',228' <w:ValidateAgainstSchemas/>',229' <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>',230' <w:IgnoreMixedContent>false</w:IgnoreMixedContent>',231' <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>',232' <w:DoNotPromoteQF/>',233' <w:LidThemeOther>EN-US</w:LidThemeOther>',234' <w:LidThemeAsian>JA</w:LidThemeAsian>',235' <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>',236' <w:Compatibility>',237' <w:BreakWrappedTables/>',238' <w:SnapToGridInCell/>',239' <w:WrapTextWithPunct/>',240' <w:UseAsianBreakRules/>',241' <w:DontGrowAutofit/>',242' <w:SplitPgBreakAndParaMark/>',243' <w:EnableOpenTypeKerning/>',244' <w:DontFlipMirrorIndents/>',245' <w:OverrideTableStyleHps/>',246' <w:UseFELayout/>',247' </w:Compatibility>',248' <m:mathPr>',249' <m:mathFont m:val="Cambria Math"/>',250' <m:brkBin m:val="before"/>',251' <m:brkBinSub m:val="&#45;-"/>',252' <m:smallFrac m:val="off"/>',253' <m:dispDef/>',254' <m:lMargin m:val="0"/>',255' <m:rMargin m:val="0"/>',256' <m:defJc m:val="centerGroup"/>',257' <m:wrapIndent m:val="1440"/>',258' <m:intLim m:val="subSup"/>',259' <m:naryLim m:val="undOvr"/>',260' </m:mathPr></w:WordDocument>',261'</xml><![endif]--><!--[if gte mso 9]><xml>',262' <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="false"',263' DefSemiHidden="false" DefQFormat="false" DefPriority="99"',264' LatentStyleCount="380">',265' <w:LsdException Locked="false" Priority="0" QFormat="true" Name="Normal"/>',266' <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 1"/>',267' <w:LsdException Locked="false" Priority="9" SemiHidden="true"',268' UnhideWhenUsed="true" QFormat="true" Name="heading 2"/>',269' <w:LsdException Locked="false" Priority="9" SemiHidden="true"',270' UnhideWhenUsed="true" QFormat="true" Name="heading 3"/>',271' <w:LsdException Locked="false" Priority="9" SemiHidden="true"',272' UnhideWhenUsed="true" QFormat="true" Name="heading 4"/>',273' <w:LsdException Locked="false" Priority="9" SemiHidden="true"',274' UnhideWhenUsed="true" QFormat="true" Name="heading 5"/>',275' <w:LsdException Locked="false" Priority="9" SemiHidden="true"',276' UnhideWhenUsed="true" QFormat="true" Name="heading 6"/>',277' <w:LsdException Locked="false" Priority="9" SemiHidden="true"',278' UnhideWhenUsed="true" QFormat="true" Name="heading 7"/>',279' <w:LsdException Locked="false" Priority="9" SemiHidden="true"',280' UnhideWhenUsed="true" QFormat="true" Name="heading 8"/>',281' <w:LsdException Locked="false" Priority="9" SemiHidden="true"',282' UnhideWhenUsed="true" QFormat="true" Name="heading 9"/>',283' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',284' Name="index 1"/>',285' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',286' Name="index 2"/>',287' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',288' Name="index 3"/>',289' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',290' Name="index 4"/>',291' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',292' Name="index 5"/>',293' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',294' Name="index 6"/>',295' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',296' Name="index 7"/>',297' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',298' Name="index 8"/>',299' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',300' Name="index 9"/>',301' <w:LsdException Locked="false" Priority="39" SemiHidden="true"',302' UnhideWhenUsed="true" Name="toc 1"/>',303' <w:LsdException Locked="false" Priority="39" SemiHidden="true"',304' UnhideWhenUsed="true" Name="toc 2"/>',305' <w:LsdException Locked="false" Priority="39" SemiHidden="true"',306' UnhideWhenUsed="true" Name="toc 3"/>',307' <w:LsdException Locked="false" Priority="39" SemiHidden="true"',308' UnhideWhenUsed="true" Name="toc 4"/>',309' <w:LsdException Locked="false" Priority="39" SemiHidden="true"',310' UnhideWhenUsed="true" Name="toc 5"/>',311' <w:LsdException Locked="false" Priority="39" SemiHidden="true"',312' UnhideWhenUsed="true" Name="toc 6"/>',313' <w:LsdException Locked="false" Priority="39" SemiHidden="true"',314' UnhideWhenUsed="true" Name="toc 7"/>',315' <w:LsdException Locked="false" Priority="39" SemiHidden="true"',316' UnhideWhenUsed="true" Name="toc 8"/>',317' <w:LsdException Locked="false" Priority="39" SemiHidden="true"',318' UnhideWhenUsed="true" Name="toc 9"/>',319' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',320' Name="Normal Indent"/>',321' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',322' Name="footnote text"/>',323' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',324' Name="annotation text"/>',325' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',326' Name="header"/>',327' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',328' Name="footer"/>',329' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',330' Name="index heading"/>',331' <w:LsdException Locked="false" Priority="35" SemiHidden="true"',332' UnhideWhenUsed="true" QFormat="true" Name="caption"/>',333' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',334' Name="table of figures"/>',335' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',336' Name="envelope address"/>',337' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',338' Name="envelope return"/>',339' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',340' Name="footnote reference"/>',341' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',342' Name="annotation reference"/>',343' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',344' Name="line number"/>',345' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',346' Name="page number"/>',347' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',348' Name="endnote reference"/>',349' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',350' Name="endnote text"/>',351' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',352' Name="table of authorities"/>',353' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',354' Name="macro"/>',355' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',356' Name="toa heading"/>',357' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',358' Name="List"/>',359' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',360' Name="List Bullet"/>',361' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',362' Name="List Number"/>',363' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',364' Name="List 2"/>',365' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',366' Name="List 3"/>',367' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',368' Name="List 4"/>',369' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',370' Name="List 5"/>',371' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',372' Name="List Bullet 2"/>',373' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',374' Name="List Bullet 3"/>',375' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',376' Name="List Bullet 4"/>',377' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',378' Name="List Bullet 5"/>',379' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',380' Name="List Number 2"/>',381' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',382' Name="List Number 3"/>',383' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',384' Name="List Number 4"/>',385' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',386' Name="List Number 5"/>',387' <w:LsdException Locked="false" Priority="10" QFormat="true" Name="Title"/>',388' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',389' Name="Closing"/>',390' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',391' Name="Signature"/>',392' <w:LsdException Locked="false" Priority="1" SemiHidden="true"',393' UnhideWhenUsed="true" Name="Default Paragraph Font"/>',394' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',395' Name="Body Text"/>',396' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',397' Name="Body Text Indent"/>',398' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',399' Name="List Continue"/>',400' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',401' Name="List Continue 2"/>',402' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',403' Name="List Continue 3"/>',404' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',405' Name="List Continue 4"/>',406' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',407' Name="List Continue 5"/>',408' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',409' Name="Message Header"/>',410' <w:LsdException Locked="false" Priority="11" QFormat="true" Name="Subtitle"/>',411' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',412' Name="Salutation"/>',413' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',414' Name="Date"/>',415' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',416' Name="Body Text First Indent"/>',417' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',418' Name="Body Text First Indent 2"/>',419' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',420' Name="Note Heading"/>',421' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',422' Name="Body Text 2"/>',423' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',424' Name="Body Text 3"/>',425' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',426' Name="Body Text Indent 2"/>',427' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',428' Name="Body Text Indent 3"/>',429' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',430' Name="Block Text"/>',431' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',432' Name="Hyperlink"/>',433' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',434' Name="FollowedHyperlink"/>',435' <w:LsdException Locked="false" Priority="22" QFormat="true" Name="Strong"/>',436' <w:LsdException Locked="false" Priority="20" QFormat="true" Name="Emphasis"/>',437' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',438' Name="Document Map"/>',439' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',440' Name="Plain Text"/>',441' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',442' Name="E-mail Signature"/>',443' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',444' Name="HTML Top of Form"/>',445' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',446' Name="HTML Bottom of Form"/>',447' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',448' Name="Normal (Web)"/>',449' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',450' Name="HTML Acronym"/>',451' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',452' Name="HTML Address"/>',453' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',454' Name="HTML Cite"/>',455' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',456' Name="HTML Code"/>',457' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',458' Name="HTML Definition"/>',459' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',460' Name="HTML Keyboard"/>',461' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',462' Name="HTML Preformatted"/>',463' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',464' Name="HTML Sample"/>',465' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',466' Name="HTML Typewriter"/>',467' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',468' Name="HTML Variable"/>',469' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',470' Name="Normal Table"/>',471' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',472' Name="annotation subject"/>',473' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',474' Name="No List"/>',475' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',476' Name="Outline List 1"/>',477' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',478' Name="Outline List 2"/>',479' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',480' Name="Outline List 3"/>',481' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',482' Name="Table Simple 1"/>',483' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',484' Name="Table Simple 2"/>',485' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',486' Name="Table Simple 3"/>',487' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',488' Name="Table Classic 1"/>',489' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',490' Name="Table Classic 2"/>',491' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',492' Name="Table Classic 3"/>',493' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',494' Name="Table Classic 4"/>',495' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',496' Name="Table Colorful 1"/>',497' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',498' Name="Table Colorful 2"/>',499' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',500' Name="Table Colorful 3"/>',501' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',502' Name="Table Columns 1"/>',503' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',504' Name="Table Columns 2"/>',505' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',506' Name="Table Columns 3"/>',507' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',508' Name="Table Columns 4"/>',509' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',510' Name="Table Columns 5"/>',511' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',512' Name="Table Grid 1"/>',513' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',514' Name="Table Grid 2"/>',515' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',516' Name="Table Grid 3"/>',517' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',518' Name="Table Grid 4"/>',519' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',520' Name="Table Grid 5"/>',521' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',522' Name="Table Grid 6"/>',523' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',524' Name="Table Grid 7"/>',525' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',526' Name="Table Grid 8"/>',527' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',528' Name="Table List 1"/>',529' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',530' Name="Table List 2"/>',531' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',532' Name="Table List 3"/>',533' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',534' Name="Table List 4"/>',535' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',536' Name="Table List 5"/>',537' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',538' Name="Table List 6"/>',539' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',540' Name="Table List 7"/>',541' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',542' Name="Table List 8"/>',543' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',544' Name="Table 3D effects 1"/>',545' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',546' Name="Table 3D effects 2"/>',547' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',548' Name="Table 3D effects 3"/>',549' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',550' Name="Table Contemporary"/>',551' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',552' Name="Table Elegant"/>',553' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',554' Name="Table Professional"/>',555' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',556' Name="Table Subtle 1"/>',557' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',558' Name="Table Subtle 2"/>',559' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',560' Name="Table Web 1"/>',561' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',562' Name="Table Web 2"/>',563' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',564' Name="Table Web 3"/>',565' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',566' Name="Balloon Text"/>',567' <w:LsdException Locked="false" Priority="39" Name="Table Grid"/>',568' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',569' Name="Table Theme"/>',570' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',571' Name="Note Level 1"/>',572' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',573' Name="Note Level 2"/>',574' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',575' Name="Note Level 3"/>',576' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',577' Name="Note Level 4"/>',578' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',579' Name="Note Level 5"/>',580' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',581' Name="Note Level 6"/>',582' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',583' Name="Note Level 7"/>',584' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',585' Name="Note Level 8"/>',586' <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"',587' Name="Note Level 9"/>',588' <w:LsdException Locked="false" SemiHidden="true" Name="Placeholder Text"/>',589' <w:LsdException Locked="false" Priority="1" QFormat="true" Name="No Spacing"/>',590' <w:LsdException Locked="false" Priority="60" Name="Light Shading"/>',591' <w:LsdException Locked="false" Priority="61" Name="Light List"/>',592' <w:LsdException Locked="false" Priority="62" Name="Light Grid"/>',593' <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1"/>',594' <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2"/>',595' <w:LsdException Locked="false" Priority="65" Name="Medium List 1"/>',596' <w:LsdException Locked="false" Priority="66" Name="Medium List 2"/>',597' <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1"/>',598' <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2"/>',599' <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3"/>',600' <w:LsdException Locked="false" Priority="70" Name="Dark List"/>',601' <w:LsdException Locked="false" Priority="71" Name="Colorful Shading"/>',602' <w:LsdException Locked="false" Priority="72" Name="Colorful List"/>',603' <w:LsdException Locked="false" Priority="73" Name="Colorful Grid"/>',604' <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 1"/>',605' <w:LsdException Locked="false" Priority="61" Name="Light List Accent 1"/>',606' <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 1"/>',607' <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 1"/>',608' <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 1"/>',609' <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 1"/>',610' <w:LsdException Locked="false" SemiHidden="true" Name="Revision"/>',611' <w:LsdException Locked="false" Priority="34" QFormat="true"',612' Name="List Paragraph"/>',613' <w:LsdException Locked="false" Priority="29" QFormat="true" Name="Quote"/>',614' <w:LsdException Locked="false" Priority="30" QFormat="true"',615' Name="Intense Quote"/>',616' <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 1"/>',617' <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 1"/>',618' <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 1"/>',619' <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 1"/>',620' <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 1"/>',621' <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 1"/>',622' <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 1"/>',623' <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 1"/>',624' <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 2"/>',625' <w:LsdException Locked="false" Priority="61" Name="Light List Accent 2"/>',626' <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 2"/>',627' <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 2"/>',628' <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 2"/>',629' <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 2"/>',630' <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 2"/>',631' <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 2"/>',632' <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 2"/>',633' <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 2"/>',634' <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 2"/>',635' <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 2"/>',636' <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 2"/>',637' <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 2"/>',638' <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 3"/>',639' <w:LsdException Locked="false" Priority="61" Name="Light List Accent 3"/>',640' <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 3"/>',641' <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 3"/>',642' <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 3"/>',643' <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 3"/>',644' <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 3"/>',645' <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 3"/>',646' <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 3"/>',647' <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 3"/>',648' <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 3"/>',649' <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 3"/>',650' <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 3"/>',651' <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 3"/>',652' <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 4"/>',653' <w:LsdException Locked="false" Priority="61" Name="Light List Accent 4"/>',654' <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 4"/>',655' <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 4"/>',656' <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 4"/>',657' <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 4"/>',658' <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 4"/>',659' <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 4"/>',660' <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 4"/>',661' <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 4"/>',662' <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 4"/>',663' <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 4"/>',664' <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 4"/>',665' <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 4"/>',666' <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 5"/>',667' <w:LsdException Locked="false" Priority="61" Name="Light List Accent 5"/>',668' <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 5"/>',669' <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 5"/>',670' <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 5"/>',671' <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 5"/>',672' <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 5"/>',673' <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 5"/>',674' <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 5"/>',675' <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 5"/>',676' <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 5"/>',677' <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 5"/>',678' <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 5"/>',679' <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 5"/>',680' <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 6"/>',681' <w:LsdException Locked="false" Priority="61" Name="Light List Accent 6"/>',682' <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 6"/>',683' <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 6"/>',684' <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 6"/>',685' <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 6"/>',686' <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 6"/>',687' <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 6"/>',688' <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 6"/>',689' <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 6"/>',690' <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 6"/>',691' <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 6"/>',692' <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 6"/>',693' <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 6"/>',694' <w:LsdException Locked="false" Priority="19" QFormat="true"',695' Name="Subtle Emphasis"/>',696' <w:LsdException Locked="false" Priority="21" QFormat="true"',697' Name="Intense Emphasis"/>',698' <w:LsdException Locked="false" Priority="31" QFormat="true"',699' Name="Subtle Reference"/>',700' <w:LsdException Locked="false" Priority="32" QFormat="true"',701' Name="Intense Reference"/>',702' <w:LsdException Locked="false" Priority="33" QFormat="true" Name="Book Title"/>',703' <w:LsdException Locked="false" Priority="37" SemiHidden="true"',704' UnhideWhenUsed="true" Name="Bibliography"/>',705' <w:LsdException Locked="false" Priority="39" SemiHidden="true"',706' UnhideWhenUsed="true" QFormat="true" Name="TOC Heading"/>',707' <w:LsdException Locked="false" Priority="41" Name="Plain Table 1"/>',708' <w:LsdException Locked="false" Priority="42" Name="Plain Table 2"/>',709' <w:LsdException Locked="false" Priority="43" Name="Plain Table 3"/>',710' <w:LsdException Locked="false" Priority="44" Name="Plain Table 4"/>',711' <w:LsdException Locked="false" Priority="45" Name="Plain Table 5"/>',712' <w:LsdException Locked="false" Priority="40" Name="Grid Table Light"/>',713' <w:LsdException Locked="false" Priority="46" Name="Grid Table 1 Light"/>',714' <w:LsdException Locked="false" Priority="47" Name="Grid Table 2"/>',715' <w:LsdException Locked="false" Priority="48" Name="Grid Table 3"/>',716' <w:LsdException Locked="false" Priority="49" Name="Grid Table 4"/>',717' <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark"/>',718' <w:LsdException Locked="false" Priority="51" Name="Grid Table 6 Colorful"/>',719' <w:LsdException Locked="false" Priority="52" Name="Grid Table 7 Colorful"/>',720' <w:LsdException Locked="false" Priority="46"',721' Name="Grid Table 1 Light Accent 1"/>',722' <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 1"/>',723' <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 1"/>',724' <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 1"/>',725' <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 1"/>',726' <w:LsdException Locked="false" Priority="51"',727' Name="Grid Table 6 Colorful Accent 1"/>',728' <w:LsdException Locked="false" Priority="52"',729' Name="Grid Table 7 Colorful Accent 1"/>',730' <w:LsdException Locked="false" Priority="46"',731' Name="Grid Table 1 Light Accent 2"/>',732' <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 2"/>',733' <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 2"/>',734' <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 2"/>',735' <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 2"/>',736' <w:LsdException Locked="false" Priority="51"',737' Name="Grid Table 6 Colorful Accent 2"/>',738' <w:LsdException Locked="false" Priority="52"',739' Name="Grid Table 7 Colorful Accent 2"/>',740' <w:LsdException Locked="false" Priority="46"',741' Name="Grid Table 1 Light Accent 3"/>',742' <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 3"/>',743' <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 3"/>',744' <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 3"/>',745' <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 3"/>',746' <w:LsdException Locked="false" Priority="51"',747' Name="Grid Table 6 Colorful Accent 3"/>',748' <w:LsdException Locked="false" Priority="52"',749' Name="Grid Table 7 Colorful Accent 3"/>',750' <w:LsdException Locked="false" Priority="46"',751' Name="Grid Table 1 Light Accent 4"/>',752' <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 4"/>',753' <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 4"/>',754' <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 4"/>',755' <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 4"/>',756' <w:LsdException Locked="false" Priority="51"',757' Name="Grid Table 6 Colorful Accent 4"/>',758' <w:LsdException Locked="false" Priority="52"',759' Name="Grid Table 7 Colorful Accent 4"/>',760' <w:LsdException Locked="false" Priority="46"',761' Name="Grid Table 1 Light Accent 5"/>',762' <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 5"/>',763' <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 5"/>',764' <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 5"/>',765' <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 5"/>',766' <w:LsdException Locked="false" Priority="51"',767' Name="Grid Table 6 Colorful Accent 5"/>',768' <w:LsdException Locked="false" Priority="52"',769' Name="Grid Table 7 Colorful Accent 5"/>',770' <w:LsdException Locked="false" Priority="46"',771' Name="Grid Table 1 Light Accent 6"/>',772' <w:LsdException Locked="false" Priority="47" Name="Grid Table 2 Accent 6"/>',773' <w:LsdException Locked="false" Priority="48" Name="Grid Table 3 Accent 6"/>',774' <w:LsdException Locked="false" Priority="49" Name="Grid Table 4 Accent 6"/>',775' <w:LsdException Locked="false" Priority="50" Name="Grid Table 5 Dark Accent 6"/>',776' <w:LsdException Locked="false" Priority="51"',777' Name="Grid Table 6 Colorful Accent 6"/>',778' <w:LsdException Locked="false" Priority="52"',779' Name="Grid Table 7 Colorful Accent 6"/>',780' <w:LsdException Locked="false" Priority="46" Name="List Table 1 Light"/>',781' <w:LsdException Locked="false" Priority="47" Name="List Table 2"/>',782' <w:LsdException Locked="false" Priority="48" Name="List Table 3"/>',783' <w:LsdException Locked="false" Priority="49" Name="List Table 4"/>',784' <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark"/>',785' <w:LsdException Locked="false" Priority="51" Name="List Table 6 Colorful"/>',786' <w:LsdException Locked="false" Priority="52" Name="List Table 7 Colorful"/>',787' <w:LsdException Locked="false" Priority="46"',788' Name="List Table 1 Light Accent 1"/>',789' <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 1"/>',790' <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 1"/>',791' <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 1"/>',792' <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 1"/>',793' <w:LsdException Locked="false" Priority="51"',794' Name="List Table 6 Colorful Accent 1"/>',795' <w:LsdException Locked="false" Priority="52"',796' Name="List Table 7 Colorful Accent 1"/>',797' <w:LsdException Locked="false" Priority="46"',798' Name="List Table 1 Light Accent 2"/>',799' <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 2"/>',800' <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 2"/>',801' <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 2"/>',802' <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 2"/>',803' <w:LsdException Locked="false" Priority="51"',804' Name="List Table 6 Colorful Accent 2"/>',805' <w:LsdException Locked="false" Priority="52"',806' Name="List Table 7 Colorful Accent 2"/>',807' <w:LsdException Locked="false" Priority="46"',808' Name="List Table 1 Light Accent 3"/>',809' <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 3"/>',810' <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 3"/>',811' <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 3"/>',812' <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 3"/>',813' <w:LsdException Locked="false" Priority="51"',814' Name="List Table 6 Colorful Accent 3"/>',815' <w:LsdException Locked="false" Priority="52"',816' Name="List Table 7 Colorful Accent 3"/>',817' <w:LsdException Locked="false" Priority="46"',818' Name="List Table 1 Light Accent 4"/>',819' <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 4"/>',820' <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 4"/>',821' <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 4"/>',822' <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 4"/>',823' <w:LsdException Locked="false" Priority="51"',824' Name="List Table 6 Colorful Accent 4"/>',825' <w:LsdException Locked="false" Priority="52"',826' Name="List Table 7 Colorful Accent 4"/>',827' <w:LsdException Locked="false" Priority="46"',828' Name="List Table 1 Light Accent 5"/>',829' <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 5"/>',830' <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 5"/>',831' <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 5"/>',832' <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 5"/>',833' <w:LsdException Locked="false" Priority="51"',834' Name="List Table 6 Colorful Accent 5"/>',835' <w:LsdException Locked="false" Priority="52"',836' Name="List Table 7 Colorful Accent 5"/>',837' <w:LsdException Locked="false" Priority="46"',838' Name="List Table 1 Light Accent 6"/>',839' <w:LsdException Locked="false" Priority="47" Name="List Table 2 Accent 6"/>',840' <w:LsdException Locked="false" Priority="48" Name="List Table 3 Accent 6"/>',841' <w:LsdException Locked="false" Priority="49" Name="List Table 4 Accent 6"/>',842' <w:LsdException Locked="false" Priority="50" Name="List Table 5 Dark Accent 6"/>',843' <w:LsdException Locked="false" Priority="51"',844' Name="List Table 6 Colorful Accent 6"/>',845' <w:LsdException Locked="false" Priority="52"',846' Name="List Table 7 Colorful Accent 6"/>',847' </w:LatentStyles>',848'</xml><![endif]-->',849'<style>',850'<!--',851' /* Font Definitions */',852'@font-face',853' {font-family:"Courier New";',854' panose-1:2 7 3 9 2 2 5 2 4 4;',855' mso-font-charset:0;',856' mso-generic-font-family:auto;',857' mso-font-pitch:variable;',858' mso-font-signature:-536859905 -1073711037 9 0 511 0;}',859'@font-face',860' {font-family:Wingdings;',861' panose-1:5 0 0 0 0 0 0 0 0 0;',862' mso-font-charset:2;',863' mso-generic-font-family:auto;',864' mso-font-pitch:variable;',865' mso-font-signature:0 268435456 0 0 -2147483648 0;}',866'@font-face',867' {font-family:"MS 明朝";',868' mso-font-charset:128;',869' mso-generic-font-family:auto;',870' mso-font-pitch:variable;',871' mso-font-signature:-536870145 1791491579 134217746 0 131231 0;}',872'@font-face',873' {font-family:"Cambria Math";',874' panose-1:2 4 5 3 5 4 6 3 2 4;',875' mso-font-charset:0;',876' mso-generic-font-family:auto;',877' mso-font-pitch:variable;',878' mso-font-signature:-536870145 1107305727 0 0 415 0;}',879'@font-face',880' {font-family:Cambria;',881' panose-1:2 4 5 3 5 4 6 3 2 4;',882' mso-font-charset:0;',883' mso-generic-font-family:auto;',884' mso-font-pitch:variable;',885' mso-font-signature:-536870145 1073743103 0 0 415 0;}',886'@font-face',887' {font-family:"Comic Sans MS";',888' panose-1:3 15 7 2 3 3 2 2 2 4;',889' mso-font-charset:0;',890' mso-generic-font-family:auto;',891' mso-font-pitch:variable;',892' mso-font-signature:647 0 0 0 159 0;}',893' /* Style Definitions */',894'p.MsoNormal, li.MsoNormal, div.MsoNormal',895' {mso-style-unhide:no;',896' mso-style-qformat:yes;',897' mso-style-parent:"";',898' margin:0in;',899' margin-bottom:.0001pt;',900' mso-pagination:widow-orphan;',901' font-size:12.0pt;',902' font-family:Cambria;',903' mso-ascii-font-family:Cambria;',904' mso-ascii-theme-font:minor-latin;',905' mso-fareast-font-family:"MS 明朝";',906' mso-fareast-theme-font:minor-fareast;',907' mso-hansi-font-family:Cambria;',908' mso-hansi-theme-font:minor-latin;',909' mso-bidi-font-family:"Times New Roman";',910' mso-bidi-theme-font:minor-bidi;}',911'p.MsoListParagraph, li.MsoListParagraph, div.MsoListParagraph',912' {mso-style-priority:34;',913' mso-style-unhide:no;',914' mso-style-qformat:yes;',915' margin-top:0in;',916' margin-right:0in;',917' margin-bottom:0in;',918' margin-left:.5in;',919' margin-bottom:.0001pt;',920' mso-add-space:auto;',921' mso-pagination:widow-orphan;',922' font-size:12.0pt;',923' font-family:Cambria;',924' mso-ascii-font-family:Cambria;',925' mso-ascii-theme-font:minor-latin;',926' mso-fareast-font-family:"MS 明朝";',927' mso-fareast-theme-font:minor-fareast;',928' mso-hansi-font-family:Cambria;',929' mso-hansi-theme-font:minor-latin;',930' mso-bidi-font-family:"Times New Roman";',931' mso-bidi-theme-font:minor-bidi;}',932'p.MsoListParagraphCxSpFirst, li.MsoListParagraphCxSpFirst, div.MsoListParagraphCxSpFirst',933' {mso-style-priority:34;',934' mso-style-unhide:no;',935' mso-style-qformat:yes;',936' mso-style-type:export-only;',937' margin-top:0in;',938' margin-right:0in;',939' margin-bottom:0in;',940' margin-left:.5in;',941' margin-bottom:.0001pt;',942' mso-add-space:auto;',943' mso-pagination:widow-orphan;',944' font-size:12.0pt;',945' font-family:Cambria;',946' mso-ascii-font-family:Cambria;',947' mso-ascii-theme-font:minor-latin;',948' mso-fareast-font-family:"MS 明朝";',949' mso-fareast-theme-font:minor-fareast;',950' mso-hansi-font-family:Cambria;',951' mso-hansi-theme-font:minor-latin;',952' mso-bidi-font-family:"Times New Roman";',953' mso-bidi-theme-font:minor-bidi;}',954'p.MsoListParagraphCxSpMiddle, li.MsoListParagraphCxSpMiddle, div.MsoListParagraphCxSpMiddle',955' {mso-style-priority:34;',956' mso-style-unhide:no;',957' mso-style-qformat:yes;',958' mso-style-type:export-only;',959' margin-top:0in;',960' margin-right:0in;',961' margin-bottom:0in;',962' margin-left:.5in;',963' margin-bottom:.0001pt;',964' mso-add-space:auto;',965' mso-pagination:widow-orphan;',966' font-size:12.0pt;',967' font-family:Cambria;',968' mso-ascii-font-family:Cambria;',969' mso-ascii-theme-font:minor-latin;',970' mso-fareast-font-family:"MS 明朝";',971' mso-fareast-theme-font:minor-fareast;',972' mso-hansi-font-family:Cambria;',973' mso-hansi-theme-font:minor-latin;',974' mso-bidi-font-family:"Times New Roman";',975' mso-bidi-theme-font:minor-bidi;}',976'p.MsoListParagraphCxSpLast, li.MsoListParagraphCxSpLast, div.MsoListParagraphCxSpLast',977' {mso-style-priority:34;',978' mso-style-unhide:no;',979' mso-style-qformat:yes;',980' mso-style-type:export-only;',981' margin-top:0in;',982' margin-right:0in;',983' margin-bottom:0in;',984' margin-left:.5in;',985' margin-bottom:.0001pt;',986' mso-add-space:auto;',987' mso-pagination:widow-orphan;',988' font-size:12.0pt;',989' font-family:Cambria;',990' mso-ascii-font-family:Cambria;',991' mso-ascii-theme-font:minor-latin;',992' mso-fareast-font-family:"MS 明朝";',993' mso-fareast-theme-font:minor-fareast;',994' mso-hansi-font-family:Cambria;',995' mso-hansi-theme-font:minor-latin;',996' mso-bidi-font-family:"Times New Roman";',997' mso-bidi-theme-font:minor-bidi;}',998'.MsoChpDefault',999' {mso-style-type:export-only;',1000' mso-default-props:yes;',1001' font-family:Cambria;',1002' mso-ascii-font-family:Cambria;',1003' mso-ascii-theme-font:minor-latin;',1004' mso-fareast-font-family:"MS 明朝";',1005' mso-fareast-theme-font:minor-fareast;',1006' mso-hansi-font-family:Cambria;',1007' mso-hansi-theme-font:minor-latin;',1008' mso-bidi-font-family:"Times New Roman";',1009' mso-bidi-theme-font:minor-bidi;}',1010'@page WordSection1',1011' {size:8.5in 11.0in;',1012' margin:1.0in 1.0in 1.0in 1.0in;',1013' mso-header-margin:.5in;',1014' mso-footer-margin:.5in;',1015' mso-paper-source:0;}',1016'div.WordSection1',1017' {page:WordSection1;}',1018' /* List Definitions */',1019'@list l0',1020' {mso-list-id:1751544061;',1021' mso-list-type:hybrid;',1022' mso-list-template-ids:-622833810 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}',1023'@list l0:level1',1024' {mso-level-number-format:bullet;',1025' mso-level-text:;',1026' mso-level-tab-stop:none;',1027' mso-level-number-position:left;',1028' text-indent:-.25in;',1029' font-family:Symbol;}',1030'@list l0:level2',1031' {mso-level-number-format:bullet;',1032' mso-level-text:o;',1033' mso-level-tab-stop:none;',1034' mso-level-number-position:left;',1035' text-indent:-.25in;',1036' font-family:"Courier New";',1037' mso-bidi-font-family:"Times New Roman";}',1038'@list l0:level3',1039' {mso-level-number-format:bullet;',1040' mso-level-text:;',1041' mso-level-tab-stop:none;',1042' mso-level-number-position:left;',1043' text-indent:-.25in;',1044' font-family:Wingdings;}',1045'@list l0:level4',1046' {mso-level-number-format:bullet;',1047' mso-level-text:;',1048' mso-level-tab-stop:none;',1049' mso-level-number-position:left;',1050' text-indent:-.25in;',1051' font-family:Symbol;}',1052'@list l0:level5',1053' {mso-level-number-format:bullet;',1054' mso-level-text:o;',1055' mso-level-tab-stop:none;',1056' mso-level-number-position:left;',1057' text-indent:-.25in;',1058' font-family:"Courier New";',1059' mso-bidi-font-family:"Times New Roman";}',1060'@list l0:level6',1061' {mso-level-number-format:bullet;',1062' mso-level-text:;',1063' mso-level-tab-stop:none;',1064' mso-level-number-position:left;',1065' text-indent:-.25in;',1066' font-family:Wingdings;}',1067'@list l0:level7',1068' {mso-level-number-format:bullet;',1069' mso-level-text:;',1070' mso-level-tab-stop:none;',1071' mso-level-number-position:left;',1072' text-indent:-.25in;',1073' font-family:Symbol;}',1074'@list l0:level8',1075' {mso-level-number-format:bullet;',1076' mso-level-text:o;',1077' mso-level-tab-stop:none;',1078' mso-level-number-position:left;',1079' text-indent:-.25in;',1080' font-family:"Courier New";',1081' mso-bidi-font-family:"Times New Roman";}',1082'@list l0:level9',1083' {mso-level-number-format:bullet;',1084' mso-level-text:;',1085' mso-level-tab-stop:none;',1086' mso-level-number-position:left;',1087' text-indent:-.25in;',1088' font-family:Wingdings;}',1089'@list l1',1090' {mso-list-id:1845972260;',1091' mso-list-type:hybrid;',1092' mso-list-template-ids:1079810306 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}',1093'@list l1:level1',1094' {mso-level-tab-stop:none;',1095' mso-level-number-position:left;',1096' text-indent:-.25in;}',1097'@list l1:level2',1098' {mso-level-number-format:alpha-lower;',1099' mso-level-tab-stop:none;',1100' mso-level-number-position:left;',1101' text-indent:-.25in;}',1102'@list l1:level3',1103' {mso-level-number-format:roman-lower;',1104' mso-level-tab-stop:none;',1105' mso-level-number-position:right;',1106' text-indent:-9.0pt;}',1107'@list l1:level4',1108' {mso-level-tab-stop:none;',1109' mso-level-number-position:left;',1110' text-indent:-.25in;}',1111'@list l1:level5',1112' {mso-level-number-format:alpha-lower;',1113' mso-level-tab-stop:none;',1114' mso-level-number-position:left;',1115' text-indent:-.25in;}',1116'@list l1:level6',1117' {mso-level-number-format:roman-lower;',1118' mso-level-tab-stop:none;',1119' mso-level-number-position:right;',1120' text-indent:-9.0pt;}',1121'@list l1:level7',1122' {mso-level-tab-stop:none;',1123' mso-level-number-position:left;',1124' text-indent:-.25in;}',1125'@list l1:level8',1126' {mso-level-number-format:alpha-lower;',1127' mso-level-tab-stop:none;',1128' mso-level-number-position:left;',1129' text-indent:-.25in;}',1130'@list l1:level9',1131' {mso-level-number-format:roman-lower;',1132' mso-level-tab-stop:none;',1133' mso-level-number-position:right;',1134' text-indent:-9.0pt;}',1135'ol',1136' {margin-bottom:0in;}',1137'ul',1138' {margin-bottom:0in;}',1139'-->',1140'</style>',1141'<!--[if gte mso 10]>',1142'<style>',1143' /* Style Definitions */',1144'table.MsoNormalTable',1145' {mso-style-name:"Table Normal";',1146' mso-tstyle-rowband-size:0;',1147' mso-tstyle-colband-size:0;',1148' mso-style-noshow:yes;',1149' mso-style-priority:99;',1150' mso-style-parent:"";',1151' mso-padding-alt:0in 5.4pt 0in 5.4pt;',1152' mso-para-margin:0in;',1153' mso-para-margin-bottom:.0001pt;',1154' mso-pagination:widow-orphan;',1155' font-size:12.0pt;',1156' font-family:Cambria;',1157' mso-ascii-font-family:Cambria;',1158' mso-ascii-theme-font:minor-latin;',1159' mso-hansi-font-family:Cambria;',1160' mso-hansi-theme-font:minor-latin;}',1161'</style>',1162'<![endif]-->',1163'</head>',1164'',1165'<body bgcolor=white lang=EN-US style=\'tab-interval:.5in\'>',1166'<!--StartFragment-->',1167'',1168'<p class=MsoNormal><span style=\'font-size:14.0pt;font-family:"Comic Sans MS"\'>My',1169'complicated <b style=\'mso-bidi-font-weight:normal\'>word document renders</b> <i ',1170'style=\'mso-bidi-font-style:normal\'>like this in the card</i> generator.<o:p></o:p></span></p>',1171'',1172'<p class=MsoNormal><span style=\'font-size:14.0pt;font-family:"Comic Sans MS"\'><o:p>&nbsp;</o:p></span></p>',1173'',1174'<p class=MsoNormal><span style=\'font-size:24.0pt;font-family:"Comic Sans MS"\'>Test',1175'big <span style=\'color:red\'>text</span><o:p></o:p></span></p>',1176'',1177'<p class=MsoNormal><span style=\'font-size:24.0pt;font-family:"Comic Sans MS"\'><o:p>&nbsp;</o:p></span></p>',1178'',1179'<p class=MsoNormal><span style=\'font-size:24.0pt;font-family:"Comic Sans MS"\'><o:p>&nbsp;</o:p></span></p>',1180'',1181'<p class=MsoNormal><span style=\'font-size:18.0pt;font-family:"Comic Sans MS"\'>Testing',1182'smaller text and <s>crossed out text.<o:p></o:p></s></span></p>',1183'',1184'<p class=MsoNormal><s><span style=\'font-size:18.0pt;font-family:"Comic Sans MS"\'><o:p><span ',1185' style=\'text-decoration:none\'>&nbsp;</span></o:p></span></s></p>',1186'',1187'<p class=MsoListParagraphCxSpFirst style=\'text-indent:-.25in;mso-list:l0 level1 lfo1\'><![if !supportLists]><span ',1188'style=\'font-size:14.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;',1189'mso-bidi-font-family:Symbol\'><span style=\'mso-list:Ignore\'>·<span ',1190'style=\'font:7.0pt "Times New Roman"\'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span ',1191'style=\'font-size:14.0pt;font-family:"Comic Sans MS"\'>Test list<o:p></o:p></span></p>',1192'',1193'<p class=MsoListParagraphCxSpMiddle style=\'text-indent:-.25in;mso-list:l0 level1 lfo1\'><![if !supportLists]><span ',1194'style=\'font-size:14.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;',1195'mso-bidi-font-family:Symbol\'><span style=\'mso-list:Ignore\'>·<span ',1196'style=\'font:7.0pt "Times New Roman"\'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span ',1197'style=\'font-size:14.0pt;font-family:"Comic Sans MS"\'>Test<o:p></o:p></span></p>',1198'',1199'<p class=MsoListParagraphCxSpMiddle style=\'margin-left:1.0in;mso-add-space:',1200'auto;text-indent:-.25in;mso-list:l0 level2 lfo1\'><![if !supportLists]><span ',1201'style=\'font-size:14.0pt;font-family:"Courier New";mso-fareast-font-family:"Courier New"\'><span ',1202'style=\'mso-list:Ignore\'>o<span style=\'font:7.0pt "Times New Roman"\'>&nbsp;&nbsp;',1203'</span></span></span><![endif]><span style=\'font-size:14.0pt;font-family:"Comic Sans MS"\'>Test',1204'indented<o:p></o:p></span></p>',1205'',1206'<p class=MsoListParagraphCxSpMiddle style=\'text-indent:-.25in;mso-list:l0 level1 lfo1\'><![if !supportLists]><span ',1207'style=\'font-size:14.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;',1208'mso-bidi-font-family:Symbol\'><span style=\'mso-list:Ignore\'>·<span ',1209'style=\'font:7.0pt "Times New Roman"\'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span ',1210'style=\'font-size:14.0pt;font-family:"Comic Sans MS"\'>Tes6t<o:p></o:p></span></p>',1211'',1212'<p class=MsoListParagraphCxSpMiddle><span style=\'font-size:14.0pt;font-family:',1213'"Comic Sans MS"\'><o:p>&nbsp;</o:p></span></p>',1214'',1215'<p class=MsoListParagraphCxSpMiddle style=\'text-indent:-.25in;mso-list:l1 level1 lfo2\'><![if !supportLists]><span ',1216'style=\'font-size:14.0pt;font-family:"Comic Sans MS";mso-fareast-font-family:',1217'"Comic Sans MS";mso-bidi-font-family:"Comic Sans MS"\'><span style=\'mso-list:',1218'Ignore\'>1.<span style=\'font:7.0pt "Times New Roman"\'>&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span ',1219'style=\'font-size:14.0pt;font-family:"Comic Sans MS"\'>tes t test test<o:p></o:p></span></p>',1220'',1221'<p class=MsoListParagraphCxSpLast style=\'margin-left:1.0in;mso-add-space:auto;',1222'text-indent:-.25in;mso-list:l1 level2 lfo2\'><![if !supportLists]><span ',1223'style=\'font-size:14.0pt;font-family:"Comic Sans MS";mso-fareast-font-family:',1224'"Comic Sans MS";mso-bidi-font-family:"Comic Sans MS"\'><span style=\'mso-list:',1225'Ignore\'>a.<span style=\'font:7.0pt "Times New Roman"\'>&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span ',1226'style=\'font-size:14.0pt;font-family:"Comic Sans MS"\'>tes t indented<o:p></o:p></span></p>',1227'',1228'<p class=MsoNormal><o:p>&nbsp;</o:p></p>',1229'',1230'<!--EndFragment-->',1231'</body>',1232'',...

Full Screen

Full Screen

project.js

Source:project.js Github

copy

Full Screen

1/*2 * Author: Anna Yu3 * Created: 28 February 20214 * License: Public Domain5*/6$("#alamedabtn").click( function() {7 $('html,body').animate({8 scrollTop: $("#alameda").offset().top}, 'slow');9});10$("#contraCostabtn").click( function() {11 $('html,body').animate({12 scrollTop: $("#contracosta").offset().top}, 'slow');13});14$("#montereybtn").click( function() {15 $('html,body').animate({16 scrollTop: $("#monterey").offset().top}, 'slow');17});18$("#sanBenitobtn").click( function() {19 $('html,body').animate({20 scrollTop: $("#sanbenito").offset().top}, 'slow');21});22$("#sanFranciscobtn").click( function() {23 $('html,body').animate({24 scrollTop: $("#sanfrancisco").offset().top}, 'slow');25});26$("#sanMateobtn").click( function() {27 $('html,body').animate({28 scrollTop: $("#sanmateo").offset().top}, 'slow');29});30$("#santaClarabtn").click( function() {31 $('html,body').animate({32 scrollTop: $("#santaclara").offset().top}, 'slow');33});34$("#santaCruzbtn").click( function() {35 $('html,body').animate({36 scrollTop: $("#santacruz").offset().top}, 'slow');37});38// from https://github.com/ehsalazar/art101/blob/master/groupproject/js/lab.js39//button group40$("#alameda_button").click(function(){$("#alameda").toggleClass("hidden")})41$("#contracosta_button").click(function(){$("#contracosta").toggleClass("hidden")})42$("#monterey_button").click(function(){$("#monterey").toggleClass("hidden")})43$("#sanbenito_button").click(function(){$("#sanbenito").toggleClass("hidden")})44$("#sanfrancisco_button").click(function(){$("#sanfrancisco").toggleClass("hidden")})45$("#sanmateo_button").click(function(){$("#sanmateo").toggleClass("hidden")})46$("#santaclara_button").click(function(){$("#santaclara").toggleClass("hidden")})47$("#santacruz_button").click(function(){$("#santacruz").toggleClass("hidden")})48// Alameda info buttons49$("#testing_button_alameda").click(function(){$("#testing_alameda").toggleClass("unhideTest")});50$("#vaccination_button_alameda").click(function(){$("#vaccination_alameda").toggleClass("unhideVaccine")});51$("#additional_button_alameda").click(function(){$("#additional_alameda").toggleClass("unhideAdditional")});52// Contra Costa info buttons53$("#testing_button_contracosta").click(function(){$("#testing_contracosta").toggleClass("unhideTest")});54$("#vaccination_button_contracosta").click(function(){$("#vaccination_contracosta").toggleClass("unhideVaccine")});55$("#additional_button_contracosta").click(function(){$("#additional_contracosta").toggleClass("unhideAdditional")});56// Monterey info buttons57$("#testing_button_monterey").click(function(){$("#testing_monterey").toggleClass("unhideTest")});58$("#vaccination_button_monterey").click(function(){$("#vaccination_monterey").toggleClass("unhideVaccine")});59$("#additional_button_monterey").click(function(){$("#additional_monterey").toggleClass("unhideAdditional")});60// San Benito info buttons61$("#testing_button_sanbenito").click(function(){$("#testing_sanbenito").toggleClass("unhideTest")});62$("#vaccination_button_sanbenito").click(function(){$("#vaccination_sanbenito").toggleClass("unhideVaccine")});63$("#additional_button_sanbenito").click(function(){$("#additional_sanbenito").toggleClass("unhideAdditional")});64// San Francisco info buttons65$("#testing_button_sanfrancisco").click(function(){$("#testing_sanfrancisco").toggleClass("unhideTest")});66$("#vaccination_button_sanfrancisco").click(function(){$("#vaccination_sanfrancisco").toggleClass("unhideVaccine")});67$("#additional_button_sanfrancisco").click(function(){$("#additional_sanfrancisco").toggleClass("unhideAdditional")});68// San Mateo info buttons69$("#testing_button_sanmateo").click(function(){$("#testing_sanmateo").toggleClass("unhideTest")});70$("#vaccination_button_sanmateo").click(function(){$("#vaccination_sanmateo").toggleClass("unhideVaccine")});71$("#additional_button_sanmateo").click(function(){$("#additional_sanmateo").toggleClass("unhideAdditional")});72// Santa Clara info buttons73$("#testing_button_santaclara").click(function(){$("#testing_santaclara").toggleClass("unhideTest")});74$("#vaccination_button_santaclara").click(function(){$("#vaccination_santaclara").toggleClass("unhideVaccine")});75$("#additional_button_santaclara").click(function(){$("#additional_santaclara").toggleClass("unhideAdditional")});76// Santa Cruz info buttons77$("#testing_button_santacruz").click(function(){$("#testing_santacruz").toggleClass("unhideTest")});78$("#vaccination_button_santacruz").click(function(){$("#vaccination_santacruz").toggleClass("unhideVaccine")});...

Full Screen

Full Screen

common_tasks.js

Source:common_tasks.js Github

copy

Full Screen

1// Copyright (c) 2019, Paul Karugu and contributors2// For license information, please see license.txt3/* section below contains general functions*/4// =================================================================================================5// global variables6var field_to_hide_unhide = {7 hours:["hours"],8 days:["days"],9 all:["hours","days"]10}11/*function that hides fields ,called on refresh*/12function hide_unhide_fields(frm, list_of_fields, hide_or_unhide) {13 for (var i = 0; i < list_of_fields.length; i++) {14 frm.toggle_display(list_of_fields[i], hide_or_unhide)15 }16}17// function that hides or unhides certain fields on refresh18function hide_unhide_on_refresh(frm) {19 if (frm.doc.average_turn_around_time == "Hours") {20 hide_function(frm, field_to_hide_unhide, "hours")21 }22 else if (frm.doc.average_turn_around_time == "Days") {23 hide_function(frm, field_to_hide_unhide, "days")24 }25 else {26 hide_function(frm, field_to_hide_unhide, "none")27 }28 // check whether to show if_yes_which_task_does_this_task_come_after field29 if(frm.doc.does_this_task_require_to_be_handled_after_another_task == "Yes"){30 frm.toggle_display("if_yes_which_task_does_this_task_come_after", true)31 }32 else{33 frm.toggle_display("if_yes_which_task_does_this_task_come_after", false)34 }35 function hide_function(frm, field_to_hide_unhide, selected_option) {36 var hide_fields = field_to_hide_unhide["all"]37 var unhide_fields = field_to_hide_unhide[selected_option]38 if (selected_option == "none") {39 hide_unhide_fields(frm, hide_fields, false)40 }41 else {42 hide_unhide_fields(frm, hide_fields, false)43 hide_unhide_fields(frm, unhide_fields, true)44 }45 }46}47// function that alerts a message provided to it as parameter48function alert_message(message_to_print){49 msgprint(message_to_print)50}51/* end of the general functions section52// =================================================================================================53/* This section contains functions that are triggered by the form action refresh or54reload etc to perform various action*/55frappe.ui.form.on('Common Tasks', {56 refresh: function(frm) {57 // hide unhide fields58 hide_unhide_on_refresh(frm)59 }60});61// functionality triggered by filling the does_this_task_require_to_be_handled_after_another_task62frappe.ui.form.on("Common Tasks", "does_this_task_require_to_be_handled_after_another_task", function (frm) {63 frm.refresh()64 // clear the unselected field65 frm.doc.total_time_to_finish_task = ""66 frm.doc.if_yes_which_task_does_this_task_come_after = ""67})68// functionality triggered by clicking on the Average Turn Around Time button69frappe.ui.form.on("Common Tasks", "average_turn_around_time", function (frm) {70 console.log("triggered avarage")71 frm.refresh()72 // clear the unselected field73 frm.doc.days = "" 74 frm.doc.hours = ""75 frm.doc.total_time_to_finish_task = ""76 if(frm.doc.hours){77 console.log("still exists")78 }79})80// functionality triggered by filling the hours field81frappe.ui.form.on("Common Tasks", "hours", function (frm) {82 calcuate_total_turnaround_time(frm)83 frm.refresh()84})85// functionality triggered by filling the days field86frappe.ui.form.on("Common Tasks", "days", function (frm) {87 calcuate_total_turnaround_time(frm)88 frm.refresh()89})90// functionality triggered by clicking does_this_task_require_to_be_handled_after_another_task91frappe.ui.form.on("Common Tasks", "if_yes_which_task_does_this_task_come_after", function (frm) {92 calcuate_total_turnaround_time(frm)93 frm.refresh()...

Full Screen

Full Screen

navbar.js

Source:navbar.js Github

copy

Full Screen

1const unhide_conferencing = document.getElementById("conferencing");2const unhide_online = document.getElementById("online");3const unhide_warum = document.getElementById("warum");4const suche = document.getElementById("suche");5const dropdown_suche = document.getElementById("dropdown_suche");6const dropdown_conferencing = document.getElementById("dropdown_conferencing");7const dropdown_online = document.getElementById("dropdown_online");8const dropdown_warum = document.getElementById("dropdown_warum");9suche.addEventListener("mouseover", function () {10 dropdown_suche.classList.remove("hide");11 dropdown_conferencing.classList.add("hide")12 dropdown_online.classList.add("hide");13 dropdown_warum.classList.add("hide");14 unhide_conferencing.classList.remove("active_heading");15 unhide_online.classList.remove("active_heading");16 unhide_warum.classList.remove("active_heading");17})18unhide_conferencing.addEventListener("mouseover", function () {19 dropdown_suche.classList.add("hide");20 suche.classList.remove("active_heading");21 dropdown_conferencing.classList.remove("hide");22 dropdown_online.classList.add("hide");23 dropdown_warum.classList.add("hide");24 unhide_conferencing.classList.add("active_heading");25 unhide_online.classList.remove("active_heading");26 unhide_warum.classList.remove("active_heading");27})28unhide_online.addEventListener("mouseover", function () {29 dropdown_suche.classList.add("hide");30 suche.classList.remove("active_heading");31 dropdown_conferencing.classList.add("hide");32 dropdown_online.classList.remove("hide");33 dropdown_warum.classList.add("hide");34 unhide_conferencing.classList.remove("active_heading");35 unhide_online.classList.add("active_heading");36 unhide_warum.classList.remove("active_heading");37})38unhide_warum.addEventListener("mouseover", function () {39 dropdown_suche.classList.add("hide");40 suche.classList.remove("active_heading");41 dropdown_conferencing.classList.add("hide");42 dropdown_online.classList.add("hide");43 dropdown_warum.classList.remove("hide");44 unhide_conferencing.classList.remove("active_heading");45 unhide_online.classList.remove("active_heading");46 unhide_warum.classList.add("active_heading");47})48dropdown_suche.addEventListener("mouseleave", function () {49 leave_function();50})51dropdown_conferencing.addEventListener("mouseleave", function () {52 leave_function()53})54dropdown_online.addEventListener("mouseleave", function () {55 leave_function()56})57dropdown_warum.addEventListener("mouseleave", function () {58 leave_function()59})60function leave_function() {61 dropdown_suche.classList.add("hide");62 dropdown_conferencing.classList.add("hide");63 dropdown_online.classList.add("hide");64 dropdown_warum.classList.add("hide");65 suche.classList.remove("active_heading")66 unhide_conferencing.classList.remove("active_heading");67 unhide_online.classList.remove("active_heading");68 unhide_warum.classList.remove("active_heading");69 error_message.classList.add("hide_error");70}71window.onscroll = function () {72 make_sticky()73};74const navbar = document.getElementById("navbar_sticky");75const sticky = navbar.offsetTop;76function make_sticky() {77 if (window.pageYOffset >= sticky && window.pageYOffset > 0) {78 navbar.classList.add("nav_sticky")79 }else {80 navbar.classList.remove("nav_sticky");81 }...

Full Screen

Full Screen

da-vinci-controller.js

Source:da-vinci-controller.js Github

copy

Full Screen

1class DaVinciController extends StepsController{2 constructor() {3 super();4 let geos = document.getElementsByClassName("geo-set");5 //Intro & Chain Drive: 00:00 - 00:216 this.elements = [{7 startTime: 0,8 endTime: 21.0,9 elementToUnhide: null,10 paused: false,11 isNextVideo: true12 },{13 startTime:21,14 endTime: 21.5,15 elementToUnhide: geos[0],16 paused:true,17 },18 //Anemometer: 00:21 - 00:3319 {20 startTime: 21.5,21 endTime: 33.0,22 elementToUnhide: null,23 paused: false,24 },{25 startTime: 33.0,26 endTime: 33.5,27 elementToUnhide: geos[1],28 paused:true,29 },30 //Vertical Ball: 00:33 - 00:4331 {32 startTime: 34,33 endTime: 43.0,34 elementToUnhide: null,35 paused: false,36 },{37 startTime: 43.0,38 endTime: 43.5,39 elementToUnhide: geos[2],40 paused:true,41 },42 //Printing press: 00:43 - 01:0243 {44 startTime: 44,45 endTime: 62,46 elementToUnhide: null,47 paused: false,48 },{49 startTime: 62.0,50 endTime: 62.5,51 elementToUnhide: geos[3],52 paused:true,53 },54 //Revolving Crane: 01:02 - 01:2755 {56 startTime: 63,57 endTime: 87,58 elementToUnhide: null,59 paused: false,60 },{61 startTime: 87.0,62 endTime: 87.5,63 elementToUnhide: geos[4],64 paused:true,65 },66 //Archimedes Screw: 01:27 - 01:3767 {68 startTime: 88,69 endTime: 97,70 elementToUnhide: null,71 paused: false,72 },{73 startTime: 97.0,74 endTime: 97.5,75 elementToUnhide: geos[5],76 paused:true,77 },78 //Machine Gun: 01:37 - 02:3179 {80 startTime: 98,81 endTime: 151,82 elementToUnhide: null,83 paused: false,84 },{85 startTime: 151.0,86 endTime: 151.5,87 elementToUnhide: geos[6],88 paused:true,89 },90 //Ornitopter: 02:31 - 03:0291 {92 startTime: 152,93 endTime: 182,94 elementToUnhide: null,95 paused: false,96 },{97 startTime: 182.0,98 endTime: 182.5,99 elementToUnhide: geos[7],100 paused:true,101 },102 //Oil Press: 03:02 - 03:19103 {104 startTime: 183,105 endTime: 199,106 elementToUnhide: null,107 paused: false,108 },{109 startTime: 199.0,110 endTime: 199.5,111 elementToUnhide: geos[8],112 paused:true,113 },114 //Hydraulic Saw: 03:19 - 04:58115 {116 startTime: 200,117 endTime: 298,118 elementToUnhide: null,119 paused: false,120 },{121 startTime: 298.0,122 endTime: 298.5,123 elementToUnhide: geos[9],124 paused:true,125 }];126 this.videos = [127 ];128 }129}...

Full Screen

Full Screen

architectural-bridges-controller.js

Source:architectural-bridges-controller.js Github

copy

Full Screen

1class ArchitecturalBridges extends StepsController {2 constructor() {3 super();4 let geos = document.getElementsByClassName("geo-set");5 //00:00 - 00:506 this.elements = [{7 startTime: 0,8 endTime: 50.0,9 elementToUnhide: null,10 paused: false,11 isNextVideo: true12 }, {13 startTime: 50,14 endTime: 50.5,15 elementToUnhide: geos[0],16 paused: true,17 },18 //00:50 - 01:2019 {20 startTime: 51,21 endTime: 80.0,22 elementToUnhide: null,23 paused: false,24 }, {25 startTime: 80.0,26 endTime: 80.5,27 elementToUnhide: geos[1],28 paused: true,29 },30 //01:20 - 01:5031 {32 startTime: 81,33 endTime: 110.0,34 elementToUnhide: null,35 paused: false,36 }, {37 startTime: 110.0,38 endTime: 110.5,39 elementToUnhide: geos[2],40 paused: true,41 },42 //01:50 - 02:2043 {44 startTime: 111,45 endTime: 140.0,46 elementToUnhide: null,47 paused: false,48 }, {49 startTime: 140.0,50 endTime: 140.5,51 elementToUnhide: geos[3],52 paused: true,53 },54 //02:20 - 02:5055 {56 startTime: 141,57 endTime: 170.0,58 elementToUnhide: null,59 paused: false,60 }, {61 startTime: 170.0,62 endTime: 170.5,63 elementToUnhide: geos[4],64 paused: true,65 },66 //02:50 - 03:2067 {68 startTime: 171,69 endTime: 200.0,70 elementToUnhide: null,71 paused: false,72 }, {73 startTime: 200.0,74 endTime: 200.5,75 elementToUnhide: geos[5],76 paused: true,77 },78 //03:20 - 03:5079 {80 startTime: 201,81 endTime: 230.0,82 elementToUnhide: null,83 paused: false,84 }, {85 startTime: 230.0,86 endTime: 230.5,87 elementToUnhide: geos[6],88 paused: true,89 },90 //03:50 - 04:2091 {92 startTime: 231,93 endTime: 260.0,94 elementToUnhide: null,95 paused: false,96 }, {97 startTime: 260.0,98 endTime: 260.5,99 elementToUnhide: geos[7],100 paused: true,101 },102 //03:50 - 04:20103 {104 startTime: 261,105 endTime: 290.0,106 elementToUnhide: null,107 paused: false,108 }, {109 startTime: 290.0,110 endTime: 290.5,111 elementToUnhide: geos[8],112 paused: true,113 },114 ];115 this.videos = [116 ];117 }118}...

Full Screen

Full Screen

UnhideForm-dbg.js

Source:UnhideForm-dbg.js Github

copy

Full Screen

1/*2 * ! SAP UI development toolkit for HTML5 (SAPUI5)3(c) Copyright 2009-2016 SAP SE. All rights reserved4 */5sap.ui.define(['sap/ui/rta/command/FlexCommand', 'sap/ui/rta/command/Unhide', "sap/ui/fl/changeHandler/UnhideControl"], function(FlexCommand,6 UnhideCommand, UnhideChangeHandler) {7 "use strict";8 /**9 * Unhide SimpleForm Element or SimpleForm Container10 *11 * @class12 * @extends sap.ui.rta.command.FlexCommand13 * @author SAP SE14 * @version 1.44.415 * @constructor16 * @private17 * @since 1.3418 * @alias sap.ui.rta.command.Unhide19 * @experimental Since 1.34. This class is experimental and provides only limited functionality. Also the API might be20 * changed in future.21 */22 var UnhideForm = UnhideCommand.extend("sap.ui.rta.command.UnhideForm", {23 metadata : {24 library : "sap.ui.rta",25 properties : {26 originalElement : {27 type : "object"28 },29 changeType : {30 type : "string",31 defaultValue : "unhideControl"32 }33 },34 associations : {},35 events : {}36 }37 });38 UnhideForm.FORWARD = true;39 UnhideForm.BACKWARD = false;40 /**41 * @override42 */43 UnhideForm.prototype.init = function() {44 };45 /**46 * @override47 */48 UnhideForm.prototype._getSpecificChangeInfo = function(bForward) {49 var oElement = this.getElement();50 var mSpecificInfo = {};51 mSpecificInfo.selector = {};52 mSpecificInfo.selector.id = oElement.getId();53 mSpecificInfo.changeType = this.getChangeType();54 mSpecificInfo.sUnhideId = this.getOriginalElement().getId();55 return mSpecificInfo;56 };57 /**58 * @override59 */60 UnhideForm.prototype._getFlexChange = function(bForward, oElement) {61 var mSpecificChangeInfo = this._getSpecificChangeInfo(bForward);62 var oChange = this._completeChangeContent(mSpecificChangeInfo);63 return {64 change : oChange,65 selectorElement : oElement66 };67 };68 /**69 * @override70 */71 UnhideForm.prototype._getForwardActionData = function(oElement) {72 return this._getFlexChange(UnhideForm.FORWARD, oElement);73 };74 /**75 * @override76 */77 UnhideForm.prototype._getBackwardActionData = function(oElement) {78 return this._getFlexChange(UnhideForm.BACKWARD, oElement);79 };80 /**81 * @override82 */83 UnhideForm.prototype._undoWithElement = function(oElement) {84 var oCtrl = this.getOriginalElement();85 var aContent = oElement.getContent();86 if (this.getChangeType() === "unhideSimpleFormField") {87 var iStart = -1;88 aContent.some(function (oField, index) {89 if (oField === oCtrl) {90 iStart = index;91 oField.setVisible(false);92 }93 if (iStart >= 0 && index > iStart) {94 if ((oField instanceof sap.m.Label) || (oField instanceof sap.ui.core.Title)) {95 return true;96 } else {97 oField.setVisible(false);98 }99 }100 });101 }102 };103 /**104 * @override105 */106 UnhideForm.prototype.serialize = function() {107 return this._getSpecificChangeInfo(UnhideForm.FORWARD);108 };109 return UnhideForm;...

Full Screen

Full Screen

script.js

Source:script.js Github

copy

Full Screen

123/**4 *5 * @param {string} lightboxID 6 */7function unhideLightbox(lightboxID) {8 9 document.getElementById('lightbox-overlay').classList.remove('hidden');1011 12 document.getElementById(lightboxID).classList.remove('hidden');13}1415161718function unhideLightbox1() {19 20 unhideLightbox("art1");21}2223document.getElementById("picture-1").onclick = unhideLightbox1;2425function unhideLightbox2() {26 unhideLightbox("art2");27}2829document.getElementById("picture-2").onclick = unhideLightbox2;30313233function unhideLightbox3() {34 unhideLightbox("art3");35}3637document.getElementById("picture-3").onclick = unhideLightbox3;3839function unhideLightbox4() {40 unhideLightbox("art4");41}4243document.getElementById("picture-4").onclick = unhideLightbox4;4445function unhideLightbox5() {46 unhideLightbox("art5");47}4849document.getElementById("picture-5").onclick = unhideLightbox5;5051function unhideLightbox6() {52 unhideLightbox("art6");53}5455document.getElementById("picture-6").onclick = unhideLightbox6;565758596061function closeLightbox(lightboxID) {62 document.getElementById('lightbox-overlay').classList.add('hidden');6364 document.getElementById(lightboxID).classList.add('hidden');65}666768function closeAllLightboxes() {69 var lightboxElements = document.getElementsByClassName('lightbox');7071 for (var i = 0; i < lightboxElements.length; i++) {72 var id = lightboxElements[i].id;73 closeLightbox(id);74 }75}76 ...

Full Screen

Full Screen

Using AI Code Generation

copy

Full Screen

1function unhide() {2 var x = document.getElementById("myDIV");3 if (x.style.display === "none") {4 x.style.display = "block";5 } else {6 x.style.display = "none";7 }8}9function hide() {10 var x = document.getElementById("myDIV");11 if (x.style.display === "none") {12 x.style.display = "block";13 } else {14 x.style.display = "none";15 }16}17function hide() {18 var x = document.getElementById("myDIV");19 if (x.style.display === "none") {20 x.style.display = "block";21 } else {22 x.style.display = "none";23 }24}25function hide() {26 var x = document.getElementById("myDIV");27 if (x.style.display === "none") {28 x.style.display = "block";29 } else {30 x.style.display = "none";31 }32}33function hide() {34 var x = document.getElementById("myDIV");35 if (x.style.display === "none") {36 x.style.display = "block";37 } else {38 x.style.display = "none";39 }40}41function hide() {42 var x = document.getElementById("myDIV");43 if (x.style.display === "none") {44 x.style.display = "block";45 } else {46 x.style.display = "none";47 }48}49function hide() {50 var x = document.getElementById("myDIV");51 if (x.style.display === "none") {52 x.style.display = "block";53 } else {54 x.style.display = "none";55 }56}57function hide() {58 var x = document.getElementById("myDIV");59 if (x.style.display === "none") {60 x.style.display = "block";61 } else {62 x.style.display = "none";63 }64}65function hide() {66 var x = document.getElementById("myDIV");67 if (x.style.display === "none") {68 x.style.display = "block";

Full Screen

Using AI Code Generation

copy

Full Screen

1var Mocha = require('mocha');2var mocha = new Mocha();3mocha.unhide();4mocha.addFile('test1.js');5mocha.addFile('test2.js');6mocha.run(function(failures){7 process.on('exit', function () {8 });9});10var Mocha = require('mocha');11var mocha = new Mocha();12mocha.hide();13describe('My Suite', function() {14 it('should pass', function(){15 true.should.be.true;16 });17});18var Mocha = require('mocha');19var mocha = new Mocha();20mocha.hide();21describe('My Suite', function() {22 it('should fail', function(){23 true.should.be.false;24 });25});26var Mocha = require('mocha');27var mocha = new Mocha();28mocha.unhide();29mocha.addSuite(require('./test1'));30mocha.addSuite(require('./test2'));31mocha.run(function(failures){32 process.on('exit', function () {33 });34});35var Mocha = require('mocha');36var mocha = new Mocha();37mocha.hide();38describe('My Suite', function() {39 it('should pass', function(){40 true.should.be.true;41 });42});43var Mocha = require('mocha');44var mocha = new Mocha();45mocha.hide();46describe('My Suite', function() {47 it('should fail', function(){

Full Screen

Using AI Code Generation

copy

Full Screen

1function unhide() {2 document.getElementById('hiddenDiv').style.visibility = 'visible';3 }4 else {5 document.hiddenDiv.visibility = 'visible';6 }7 document.all.hiddenDiv.style.visibility = 'visible';8 }9 }10}11function hide() {12 document.getElementById('hiddenDiv').style.visibility = 'hidden';13 }14 else {15 document.hiddenDiv.visibility = 'hidden';16 }17 document.all.hiddenDiv.style.visibility = 'hidden';18 }19 }20}21function toggle() {22 if (document.getElementById('hiddenDiv').style.visibility == 'hidden') {23 document.getElementById('hiddenDiv').style.visibility = 'visible';24 }25 else {26 document.getElementById('hiddenDiv').style.visibility = 'hidden';27 }28 }29 else {30 if (document.hiddenDiv.visibility == 'hidden') {31 document.hiddenDiv.visibility = 'visible';32 }33 else {34 document.hiddenDiv.visibility = 'hidden';35 }36 }37 if (document.all.hiddenDiv.style.visibility == 'hidden') {38 document.all.hiddenDiv.style.visibility = 'visible';39 }40 else {41 document.all.hiddenDiv.style.visibility = 'hidden';42 }43 }44 }45}46function show() {47 document.getElementById('hiddenDiv').style.display = 'block';48 }49 else {50 document.hiddenDiv.display = 'block';51 }52 document.all.hiddenDiv.style.display = 'block';53 }54 }55}56function hide() {

Full Screen

Using AI Code Generation

copy

Full Screen

1global.unhide = function (object, name) {2 var descriptor = Object.getOwnPropertyDescriptor(object, name);3 descriptor.enumerable = true;4 Object.defineProperty(object, name, descriptor);5};6global.hide = function (object, name) {7 var descriptor = Object.getOwnPropertyDescriptor(object, name);8 descriptor.enumerable = false;9 Object.defineProperty(object, name, descriptor);10};11global.hideAll = function (object) {12 for (var name in object) {13 hide(object, name);14 }15};16global.unhideAll = function (object) {17 for (var name in object) {18 unhide(object, name);19 }20};21global.hideAllExcept = function (object, list) {22 for (var name in object) {23 if (list.indexOf(name) === -1) {24 hide(object, name);25 }26 }27};28global.unhideAllExcept = function (object, list) {29 for (var name in object) {30 if (list.indexOf(name) === -1) {31 unhide(object, name);32 }33 }34};35global.hideAllExceptMethods = function (object, list) {36 for (var name in object) {37 if (typeof object[name] === 'function' && list.indexOf(name) === -1) {38 hide(object, name);39 }40 }41};42global.unhideAllExceptMethods = function (object, list) {43 for (var name in object) {44 if (typeof object[name] === 'function' && list.indexOf(name) === -1) {45 unhide(object, name);46 }47 }48};49global.hideAllExceptProperties = function (object, list) {50 for (var name in object) {51 if (typeof object[name] !== 'function' && list.indexOf(name) === -1) {52 hide(object, name);53 }54 }55};56global.unhideAllExceptProperties = function (object, list) {57 for (var name in object) {

Full Screen

Using AI Code Generation

copy

Full Screen

1var _ = require('lodash');2var Mocha = require('mocha');3var mocha = new Mocha();4var fs = require('fs');5var path = require('path');6fs.readdirSync('./tests').filter(function(file){7 return file.substr(-3) === '.js';8}).forEach(function(file){9 mocha.addFile(10 path.join('./tests', file)11 );12});13mocha.run(function(failures){14 process.on('exit', function () {15 });16});17var assert = require('assert');18var unhide = require('mocha-unhide');19describe('Array', function() {20 describe('#indexOf()', function() {21 it('should return -1 when the value is not present', function() {22 assert.equal([1,2,3].indexOf(4), -1);23 });24 });25 describe('#indexOf()', function() {26 it('should return -1 when the value is not present', function() {27 assert.equal([1,2,3].indexOf(4), -1);28 });29 });30 describe('#indexOf()', function() {31 unhide();32 it('should return -1 when the value is not present', function() {33 assert.equal([1,2,3].indexOf(4), -1);34 });35 });36});37 #indexOf()38 3 passing (10ms)

Full Screen

Using AI Code Generation

copy

Full Screen

1var unhide = require('mocha-unhide');2unhide();3var assert = require('assert');4var a = 1;5var b = 2;6assert.equal(a, b);7var hide = require('mocha-unhide');8hide();9var assert = require('assert');10var a = 1;11var b = 1;12assert.equal(a, b);13 0 passing (6ms)14 at Context.<anonymous> (test.js:15:8)15 1 passing (6ms)

Full Screen

Using AI Code Generation

copy

Full Screen

1describe('Test Suite', function() {2 beforeEach(function() {3 unhide('div');4 });5 it('should be visible', function() {6 expect($('div').is(':visible')).to.be.true;7 });8});9describe('Test Suite', function() {10 beforeEach(function() {11 unhide('div');12 });13 it('should be visible', function() {14 expect($('div').is(':visible')).to.be.true;15 });16});17describe('Test Suite', function() {18 beforeEach(function() {19 unhide('div');20 });21 it('should be visible', function() {22 expect($('div').is(':visible')).to.be.true;23 });24});25describe('Test Suite', function() {26 beforeEach(function() {27 unhide('div');28 });29 it('should be visible', function() {30 expect($('div').is(':visible')).to.be.true;31 });32});33describe('Test Suite', function() {34 beforeEach(function() {35 unhide('div');36 });37 it('should be visible', function() {38 expect($('div').is(':visible')).to.be.true;39 });40});41describe('Test Suite', function() {42 beforeEach(function() {43 unhide('div');44 });45 it('should be visible', function() {46 expect($('div').is(':visible')).to.be.true;47 });48});49describe('Test Suite', function() {50 beforeEach(function() {51 unhide('div');52 });53 it('should be visible', function() {54 expect($('div').is(':visible')).to.be.true;55 });56});57describe('Test Suite', function() {58 beforeEach(function() {59 unhide('div');60 });61 it('should be visible', function() {62 expect($('div').is(':visible')).to.be.true;63 });64});65describe('Test Suite', function() {66 beforeEach(function() {67 unhide('div');68 });69 it('should

Full Screen

Using AI Code Generation

copy

Full Screen

1this.unhide = function () {2 this.hidden = false;3 return this;4};5this.hide = function () {6 this.hidden = true;7 return this;8};9this.unhide = function () {10 this.hidden = false;11 return this;12};13this.hide = function () {14 this.hidden = true;15 return this;16};17this.unhide = function () {18 this.hidden = false;19 return this;20};21this.hide = function () {22 this.hidden = true;23 return this;24};25this.unhide = function () {26 this.hidden = false;27 return this;28};29this.hide = function () {30 this.hidden = true;31 return this;32};33this.unhide = function () {34 this.hidden = false;35 return this;36};37this.hide = function () {38 this.hidden = true;39 return this;40};41this.unhide = function () {42 this.hidden = false;43 return this;44};45this.hide = function () {46 this.hidden = true;47 return this;48};49this.unhide = function () {50 this.hidden = false;51 return this;52};53this.hide = function () {54 this.hidden = true;55 return this;56};57this.unhide = function () {58 this.hidden = false;59 return this;60};61this.hide = function () {62 this.hidden = true;63 return this;64};

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Mocha automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful