File tree Expand file tree Collapse file tree 4 files changed +27
-10
lines changed Expand file tree Collapse file tree 4 files changed +27
-10
lines changed Original file line number Diff line number Diff line change @@ -149,9 +149,22 @@ initMap().then(async () => {
149
149
$ ( summaryTable ) . append ( $ ( `<thead><tr><th colspan='2'>PRE-CACLULATED FACILITY RESULTS: ${ facilityName } </th></tr></thead>` ) )
150
150
$ ( summaryTable ) . append ( getTbody ( facilityData . geophires_summary ) )
151
151
152
+
153
+ // WIP...
154
+ /*
155
+ 'End-Use Option': EndUseOption.DIRECT_USE_HEAT.value,
156
+ 'Reservoir Model': 1,
157
+ 'Time steps per year': 6,
158
+ 'Reservoir Depth': 3,
159
+ 'Gradient 1': temp_gradient,
160
+ */
161
+ // let geophiresDeeplinkHash = 'abc'
162
+ // let geophiresDeeplink = `/geothermal/geophires#${geophiresDeeplinkHash}`
163
+
152
164
$ ( '#results' ) . empty ( )
153
165
. append ( summaryTable )
154
- // .append(infoTable.clone())
166
+ //.append(infoTable.clone())
167
+ //.append($(`<a href='${geophiresDeeplink}'>geophires</a>`))
155
168
156
169
resetGenerationProfileGraphs ( )
157
170
} ) ;
Original file line number Diff line number Diff line change 17
17
color : # d3d3d3 ;
18
18
}
19
19
20
- # geophires-ui {
20
+ /* #geophires-ui {
21
21
min-height: 625px;
22
- }
22
+ }*/
23
23
24
24
.path-breadcrumb {
25
25
font-size : 15px ;
Original file line number Diff line number Diff line change @@ -122,8 +122,8 @@ <h3>GEOPHIRES Result</h3>
122
122
< div id ="results ">
123
123
Click a facility on the map to see its pre-calculated GEOPHIRES result summary.
124
124
</ div >
125
- < div id ="generation-profile-graphs ">
126
- < div id ="power-generation-profile-chart " style ="width: 100%; height: 250px "> </ div >
125
+ < div id ="generation-profile-graphs " style =" display: none; " >
126
+ < div id ="power-generation-profile-chart " style ="width: 100%; height: 250px; "> </ div >
127
127
< br />
128
128
< div id ="heat-electricity-extraction-generation-profile-chart "
129
129
style ="width: 100%; height: 250px "> </ div >
@@ -161,11 +161,7 @@ <h2><a id="about">About</a></h2>
161
161
< a href ="https://www.linkedin.com/in/jboden/ "> John Boden, SPE</ a >
162
162
</ li >
163
163
< li >
164
- GEOPHIRES by
165
- < a href ="https://www.linkedin.com/in/malcolmiross/ "> Malcolm Ross</ a > ,
166
- < a href ="https://www.linkedin.com/in/koenraad-beckers-980a617/ "> Koenraad Beckers</ a > :
167
- < a href ="https://github.com/softwareengineerprogrammer/GEOPHIRES-X "> forked</ a >
168
- from < a href ="https://github.com/malcolm-dsider/GEOPHIRES-X "> malcolm-dsider/GEOPHIRES-X</ a >
164
+ GEOPHIRES: see < a href ="/geothermal/geophires/#about "> GEOPHIRES Web Interface</ a > About section
169
165
</ li >
170
166
</ ul >
171
167
</ div >
Original file line number Diff line number Diff line change @@ -67,6 +67,14 @@ function setUrlHash(urlHash) {
67
67
function setVisible ( elt , isVisible ) {
68
68
if ( isVisible ) {
69
69
$ ( elt ) . removeClass ( 'hidden' )
70
+ try {
71
+ console . debug ( $ ( elt ) . css ( 'display' ) )
72
+ if ( $ ( elt ) . css ( 'display' ) === 'none' ) {
73
+ $ ( elt ) . css ( 'display' , '' )
74
+ }
75
+ } catch ( e ) {
76
+ console . warn ( 'Error checking display property' , e )
77
+ }
70
78
} else {
71
79
$ ( elt ) . addClass ( 'hidden' )
72
80
}
You can’t perform that action at this time.
0 commit comments