|
|
@ -284,7 +284,7 @@ function create_main_fragment(component, state) {
|
|
|
|
|
|
|
|
|
|
|
|
// (1:0) {{#each comments as comment, i}}
|
|
|
|
// (1:0) {{#each comments as comment, i}}
|
|
|
|
function create_each_block(component, state) {
|
|
|
|
function create_each_block(component, state) {
|
|
|
|
var comment = state.comment;
|
|
|
|
var comment = state.comment, i = state.i;
|
|
|
|
var div, strong, text, text_1, span, text_2_value = comment.author, text_2, text_3, text_4_value = state.elapsed(comment.time, state.time), text_4, text_5, text_6, raw_value = comment.html, raw_before;
|
|
|
|
var div, strong, text, text_1, span, text_2_value = comment.author, text_2, text_3, text_4_value = state.elapsed(comment.time, state.time), text_4, text_5, text_6, raw_value = comment.html, raw_before;
|
|
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
return {
|
|
|
@ -325,6 +325,7 @@ function create_each_block(component, state) {
|
|
|
|
|
|
|
|
|
|
|
|
p: function update(changed, state) {
|
|
|
|
p: function update(changed, state) {
|
|
|
|
comment = state.comment;
|
|
|
|
comment = state.comment;
|
|
|
|
|
|
|
|
i = state.i;
|
|
|
|
if ((changed.comments) && text_2_value !== (text_2_value = comment.author)) {
|
|
|
|
if ((changed.comments) && text_2_value !== (text_2_value = comment.author)) {
|
|
|
|
text_2.data = text_2_value;
|
|
|
|
text_2.data = text_2_value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|