操作
Bug(バグ) #3005
完了コミュニティタイムラインに投稿しても投稿内容が表示されない
開始日:
2012-04-20
期日:
進捗率:
100%
予定工数:
3.6 で発生するか:
Unknown (未調査)
3.8 で発生するか:
説明
概要¶
- スマホ版コミュニティタイムラインにおいて,タイムラインの表示がされない.
- タイムラインの投稿をしても反映されない(投稿のAPIリクエストは投げられている.)
原因¶
apps/pc_frontend/modules/timeline/templates/_smtTimelineCommunity.php の78行目にhideクラスが付けられているため,タイムラインが display:none; な状態となっている.
修正方針¶
diff --git a/apps/pc_frontend/modules/timeline/templates/_smtTimelineCommunity.php b/apps/pc_frontend/modules/timeline/templates/_smtTimelineCommunity.php index 4eedb80..d93e811 100644 --- a/apps/pc_frontend/modules/timeline/templates/_smtTimelineCommunity.php +++ b/apps/pc_frontend/modules/timeline/templates/_smtTimelineCommunity.php @@ -75,7 +75,7 @@ var gorgon = { <div class="gadget_header span12">コミュニティタイムライン</div> </div> -<div id="timeline-list" class="span12 hide" data-post-baseurl="<?php echo url_for('@homepage', array('absolute' => true)); ?>" data-last-id="" data-loadmore-id="" style="margin-left: 0px;"> +<div id="timeline-list" class="span12" data-post-baseurl="<?php echo url_for('@homepage', array('absolute' => true)); ?>" data-last-id="" data-loadmore-id="" style="margin-left: 0px;"> </div> <div id="timeline-list-loader" class="row span12 center show" style="margin-top: 20px; margin-bottom: 20px;"> <?php echo op_image_tag('ajax-loader.gif', array('alt' => 'Now Loading...')) ?>
Shouta Kashiwagi さんが12年以上前に更新
- 担当者 を Shouta Kashiwagi にセット
- 対象バージョン を opTimelinePlugin 0.9.1 にセット
概要¶
- スマホ版コミュニティタイムラインにおいて,タイムラインの表示がされない.
- タイムラインの投稿をしても反映されない(投稿のAPIリクエストは投げられている.)
原因¶
apps/pc_frontend/modules/timeline/templates/_smtTimelineCommunity.php の78行目にhideクラスが付けられているため,タイムラインが display:none; な状態となっている.
修正方針¶
diff --git a/apps/pc_frontend/modules/timeline/templates/_smtTimelineCommunity.php b/apps/pc_frontend/modules/timeline/templates/_smtTimelineCommunity.php index 4eedb80..d93e811 100644 --- a/apps/pc_frontend/modules/timeline/templates/_smtTimelineCommunity.php +++ b/apps/pc_frontend/modules/timeline/templates/_smtTimelineCommunity.php @@ -75,7 +75,7 @@ var gorgon = { <div class="gadget_header span12">コミュニティタイムライン</div> </div> -<div id="timeline-list" class="span12 hide" data-post-baseurl="<?php echo url_for('@homepage', array('absolute' => true)); ?>" data-last-id="" data-loadmore-id="" style="margin-left: 0px;"> +<div id="timeline-list" class="span12" data-post-baseurl="<?php echo url_for('@homepage', array('absolute' => true)); ?>" data-last-id="" data-loadmore-id="" style="margin-left: 0px;"> </div> <div id="timeline-list-loader" class="row span12 center show" style="margin-top: 20px; margin-bottom: 20px;"> <?php echo op_image_tag('ajax-loader.gif', array('alt' => 'Now Loading...')) ?>
Shouta Kashiwagi さんが12年以上前に更新
- ステータス を Accepted(着手) から Pending Review(レビュー待ち) に変更
- 進捗率 を 0 から 50 に変更
Yuya Watanabe さんが12年以上前に更新
- ステータス を Pending Review(レビュー待ち) から Pending Testing(テスト待ち) に変更
- 進捗率 を 50 から 70 に変更
Yuma Sakata さんが12年以上前に更新
- ステータス を Pending Testing(テスト待ち) から Fixed(完了) に変更
- 進捗率 を 70 から 100 に変更
テストOKです。
操作