Skip to content

Commit 5b25e8f

Browse files
stopped code blocks from executing and returning prior to plotting
1 parent 66333be commit 5b25e8f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/model_simulation/examples/interactive_brusselator_simulation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Catalyst can utilize the [GLMakie.jl](https://github.com/JuliaPlots/GLMakie.jl)
77

88
Let's again use the oscillating Brusselator model, extending the basic simulation [plotting](@ref simulation_plotting) workflow we saw earlier.
99

10-
```@example interactive_brusselator
10+
```@example interactive_brusselator; continued = true
1111
using Catalyst
1212
using OrdinaryDiffEq
1313
using GLMakie
@@ -79,7 +79,7 @@ Now, let's add interactivity to our plot using Observables and sliders. We'll bu
7979

8080
Observables are a key concept in reactive programming and are central to how Makie.jl creates interactive visualizations. You can read more about them [here](https://docs.makie.org/stable/explanations/observables).
8181

82-
```@example interactive_brusselator
82+
```@example interactive_brusselator; continued = true
8383
# Create observables for parameters and initial conditions
8484
A = Observable(1.0)
8585
B = Observable(4.0)

0 commit comments

Comments
 (0)