Bug(バグ) #3005
コミュニティタイムラインに投稿しても投稿内容が表示されない
Start date:
2012-04-20
Due date:
% Done:
100%
3.6 で発生するか:
Unknown (未調査)
3.8 で発生するか:
Unknown (未調査)
Description
概要¶
- スマホ版コミュニティタイムラインにおいて,タイムラインの表示がされない.
- タイムラインの投稿をしても反映されない(投稿の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...')) ?>
History
#1
Updated by Shouta Kashiwagi about 10 years ago
- Assignee set to Shouta Kashiwagi
- Target version set to 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...')) ?>
#2
Updated by Shouta Kashiwagi about 10 years ago
- Status changed from New(新規) to Accepted(着手)
#3
Updated by Shouta Kashiwagi about 10 years ago
- Status changed from Accepted(着手) to Pending Review(レビュー待ち)
- % Done changed from 0 to 50
#4
Updated by Shouta Kashiwagi about 10 years ago
- Description updated (diff)
#5
Updated by Yuya Watanabe about 10 years ago
- Status changed from Pending Review(レビュー待ち) to Pending Testing(テスト待ち)
- % Done changed from 50 to 70
#6
Updated by Yuma Sakata about 10 years ago
- Status changed from Pending Testing(テスト待ち) to Fixed(完了)
- % Done changed from 70 to 100
テストOKです。