-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Correct stale data in nested frames
- Loading branch information
1 parent
4c412f7
commit 1d2a018
Showing
6 changed files
with
24 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
<ul> | ||
{% for message in messages %} | ||
<li>{{ message.content }}</li> | ||
{% endfor %} | ||
</ul> | ||
{% from "wire/macros.html" import wire_frame, wire_trigger, wire_mutation %} | ||
<div> | ||
<ul> | ||
{% for message in messages %} | ||
<li>{{ message.content }}</li> | ||
{% endfor %} | ||
</ul> | ||
{{ wire_frame(id='messages_count', initial=url_for('messages_count')) }} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<div> | ||
Total messages count: <b>{{ count }}</b> | ||
</div> |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
|
||
import codecs | ||
|
||
version = '1.0.1' | ||
version = '1.0.2' | ||
|
||
setup( | ||
name='Flask-Wire', | ||
|