mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
36 lines
804 B
Plaintext
36 lines
804 B
Plaintext
-- BEFORE
|
|
<async-fragment data-provider=data.userInfoShort
|
|
var="user"
|
|
timeout=500
|
|
name="userInfo1">
|
|
|
|
<async-fragment-timeout>
|
|
1-A timeout has occurred!
|
|
</async-fragment-timeout>
|
|
1
|
|
</async-fragment>
|
|
<async-fragment data-provider=data.userInfoShort
|
|
var="user"
|
|
timeout-message="2-A timeout has occurred!"
|
|
timeout=500
|
|
name="userInfo2">
|
|
2
|
|
</async-fragment>
|
|
<async-fragment data-provider=data.userInfoLong
|
|
var="user"
|
|
timeout-message="3-A timeout has occurred!"
|
|
timeout=900
|
|
name="userInfo3">
|
|
3
|
|
</async-fragment>
|
|
<async-fragment data-provider=data.userInfoLong
|
|
var="user"
|
|
timeout=900
|
|
name="userInfo4">
|
|
|
|
<async-fragment-timeout>
|
|
4-A timeout has occurred!
|
|
</async-fragment-timeout>
|
|
4
|
|
</async-fragment>
|
|
-- AFTER |