Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
ABSOD authored Dec 31, 2024
1 parent 91af494 commit 68350fb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions assets/lookups/county_baseind_lookup.html
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ <h2 class='h2_style' title='INSTRUCTIONS:' aria-label='INSTRUCTIONS:'>INSTRUCTIO

includeHTML();


var yrval = 2023; //Update this to reflect current vintage
popBaseInd('county','county-dropdown')

//Button Event
Expand All @@ -140,7 +140,7 @@ <h2 class='h2_style' title='INSTRUCTIONS:' aria-label='INSTRUCTIONS:'>INSTRUCTIO


if(complete){
genBaseIndCty(selectedfips);
genBaseIndCty(selectedfips,yrval);
} else {
window.alert(outputmsg);
}
Expand Down
6 changes: 4 additions & 2 deletions assets/lookups/region_baseind_lookup.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ <h1 class='h1_style' id='mainx' title='State and Regional Base Industries Lookup
<p>
<ul style="list-style-type:none">
<li style='color:black;'><a href="https://drive.google.com/uc?export=download&id=1Ag0JdOo8XATTBiNuh80BTiuqLV4Kv72T" target='_blank' title='Base Industries Summary' aria_label='Base Industries Summary'>Base Industries Summary</a></li>
<li style='color:black;'><a href="../lookups/county_sya_lookup.html" target='_blank' title='Need County Data?' aria-label='Need County Data?'>Need County Data?</a></li>
<li style='color:black;'><a href="../lookups/county_baseind_lookup.html" target='_blank' title='Need County Data?' aria-label='Need County Data?'>Need County Data?</a></li>
<li style='color:black;'><a href='https://gis.dola.colorado.gov/RegionsMap/' target='_blank' title='Colorado Regions Map' aria-label='Colorado Regions Map'>Colorado Regions Map</a></li>
</ul>
</p>
Expand Down Expand Up @@ -120,6 +120,8 @@ <h2 class='h2_style' title='INSTRUCTIONS:' aria-label='INSTRUCTIONS:'>INSTRUCTIO
includeHTML();


var yrval = 2023; //Update this to reflect current vintage

popDropdown('region','region-dropdown','lookup');
//Removing problematic Regions
$("#region-dropdown").children().remove("optgroup[label='Census Metropolitan Statistical Areas']");
Expand Down Expand Up @@ -150,7 +152,7 @@ <h2 class='h2_style' title='INSTRUCTIONS:' aria-label='INSTRUCTIONS:'>INSTRUCTIO


if(complete){
genBaseIndReg(selectedreg, selectedfips);
genBaseIndReg(selectedreg, selectedfips,yrval);
} else {
window.alert(outputmsg);
}
Expand Down

0 comments on commit 68350fb

Please sign in to comment.