Skip to content

Commit 500837b

Browse files
committed
Rename MVC to Reactive
1 parent eb19028 commit 500837b

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

examples/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from examples import dom
77
from examples import editor
88
from examples import inputs
9-
from examples import mvc
9+
from examples import reactive
1010
from examples import pitch
1111
from examples import pizza
1212
from examples import splits
@@ -20,7 +20,7 @@
2020
("examples/styling.py", styling.create()),
2121
("examples/dom.py", dom.create()),
2222
("examples/inputs.py", inputs.create()),
23-
("examples/mvc.py", mvc.create()),
23+
("examples/reactive.py", reactive.create()),
2424
("examples/table.py", table.create()),
2525
("examples/custom.py", custom.create()),
2626
("examples/app.py", app.create()),

examples/mvc.py renamed to examples/reactive.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,19 +67,19 @@ def create():
6767
)
6868
return (
6969
ltk.VBox(
70-
ltk.Heading2("LTK Model-View Demo"),
70+
ltk.Heading2("Reactive LTK Demo"),
7171
form
7272
.css("border", "2px solid green")
7373
.css("padding", 12)
7474
.css("font-size", 24)
75-
.attr("name", "MVC"),
75+
.attr("name", "Reactive"),
7676
ltk.Button("Buy Hammers", order_hammers)
7777
.css("margin-top", 24)
7878
.css("border-radius", 8)
7979
.css("padding", 12)
8080
)
81-
.attr("id", "mvc")
82-
.attr("name", "MVC")
81+
.attr("id", "reactive")
82+
.attr("name", "Reactive")
8383
)
8484

8585
def order_hammers(event):

kitchensink.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ files = [
2323
"examples/pubsub.py",
2424
"examples/table.py",
2525
"examples/svg.py",
26-
"examples/mvc.py",
26+
"examples/reactive.py",
2727
]

0 commit comments

Comments
 (0)