Commit 9cea80b1f5ee23c7ae638441278d7db591a7afe7
1 parent
9ecb6089
Exists in
rhitier-dev
Revert "Show probe source ..."
This reverts commit 846ddeb596e7f33dee82a3cc09c4155c8bdcb115.
Showing
1 changed file
with
1 additions
and
34 deletions
Show diff stats
web/static/js/main.js
... | ... | @@ -232,20 +232,9 @@ |
232 | 232 | } |
233 | 233 | }); |
234 | 234 | this.targets[target_slug].active = true; |
235 | - | |
236 | - // 'src_plot': return at once if we are source | |
237 | - if ( target_slug.includes('_src') ){ | |
238 | - return this; | |
239 | - } | |
240 | - // 'src_plot': else also enable orbit | |
241 | 235 | if ((ref$ = this.orbits) != null) { |
242 | 236 | ref$.enableTarget(target_slug); |
243 | 237 | } |
244 | - // 'src_plot': and enable corresponding '_src' slug if exists | |
245 | - var src_slug = target_slug+'_src' | |
246 | - if ( src_slug in this.targets){ | |
247 | - this.enableTarget(src_slug) | |
248 | - } | |
249 | 238 | return this; |
250 | 239 | } |
251 | 240 | |
... | ... | @@ -257,20 +246,9 @@ |
257 | 246 | } |
258 | 247 | }); |
259 | 248 | this.targets[target_slug].active = false; |
260 | - | |
261 | - // 'src_plot': return at once if we are source | |
262 | - if ( target_slug.includes('_src') ){ | |
263 | - return this; | |
264 | - } | |
265 | - // 'src_plot': else also enable orbit | |
266 | 249 | if ((ref$ = this.orbits) != null) { |
267 | 250 | ref$.disableTarget(target_slug); |
268 | 251 | } |
269 | - // 'src_plot': and disable corresponding '_src' slug if exists | |
270 | - var src_slug = target_slug+'_src' | |
271 | - if ( src_slug in this.targets){ | |
272 | - this.disableTarget(src_slug) | |
273 | - } | |
274 | 252 | return this; |
275 | 253 | } |
276 | 254 | |
... | ... | @@ -895,14 +873,7 @@ |
895 | 873 | this.plotWrapper.append('g').classed('x axis', true); |
896 | 874 | this.plotWrapper.append('g').classed('y axis', true); |
897 | 875 | this.yAxisText = this.plotWrapper.append("text").attr("transform", "rotate(-90)").attr("dy", "1em").style("text-anchor", "middle").text(this.title); |
898 | - // src_plot: If it is a source we want to plot then set small Y-Title | |
899 | - let y_title='' | |
900 | - if ( this.target.slug.includes('_src') ){ | |
901 | - y_title = this.target.name | |
902 | - // src_plot: or just show normal Y-Title | |
903 | - } else { | |
904 | - y_title = this.target.name+" from "+$("input[name='input_slug']:checked").siblings(".mdl-radio__label").html(); | |
905 | - } | |
876 | + let y_title = this.target.name+" from "+$("input[name='input_slug']:checked").siblings(".mdl-radio__label").html(); | |
906 | 877 | this.yAxisTextTarget = this.plotWrapper.append("text").attr("transform", "rotate(-90)") |
907 | 878 | .attr("dy", "1em").style("text-anchor", "middle") |
908 | 879 | .style("font-style", "oblique").text(y_title); |
... | ... | @@ -1597,10 +1568,6 @@ |
1597 | 1568 | } |
1598 | 1569 | |
1599 | 1570 | initOrbiter(slug, config, data) { |
1600 | - // 'src_plot': If it is a source then Dont draw orbit` | |
1601 | - if ( slug.includes('_src') ){ | |
1602 | - return this; | |
1603 | - } | |
1604 | 1571 | const thisOrbit = this; |
1605 | 1572 | let orbit_ellipse; |
1606 | 1573 | let orbiter; | ... | ... |