Skip to content

Commit

Permalink
フォロー関係モデルのバグ確認
Browse files Browse the repository at this point in the history
  • Loading branch information
ya-s-u committed Oct 18, 2014
1 parent 6dd814c commit c4406be
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/View/Layouts/Common.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
</div>
<div class="belt">
<div class="container">
<p class="belt_catch">行きたいお店をきっかけに、</br>久しぶりの友人と食事をしませんか</p>
<p class="belt_catch">気になるお店をきっかけに、</br>久しぶりの友人と食事をしませんか</p>
</div>
</div>
<?=$this->fetch('content')?>
Expand Down
2 changes: 1 addition & 1 deletion app/View/Users/index.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<div class="container">
<p class="shop_text">近所でおすすめのお店</p>
<ul class="shop">
<li ng-repeat="shop in Shops">
<li ng-repeat="shop in Shops" class="check">
<img class="shop_img" src="{{shop.photo.pc.l}}" ng-click="add(<?php if(isset($auth))echo $auth['User']['user_id']?>,shop.id,shop.name,shop.urls.pc)">
<p class="shop_budget"><i class="icon-info"></i>{{shop.budget.average}}</p>
<p class="shop_title">{{shop.name}}</p>
Expand Down
4 changes: 4 additions & 0 deletions app/webroot/css/common.css
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,10 @@ h1 {
margin-right: 0;
}

.shop > li:check:before {
content: "\e607";
}

.shop_img {
height: 178px;
cursor: pointer;
Expand Down

0 comments on commit c4406be

Please sign in to comment.