Skip to content

Commit 8f83f1d

Browse files
committed
chore: Use icon of nightly version
1 parent 8f9ceb3 commit 8f83f1d

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

app/templates/menu.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ <h1 ng-if="ENV.name != 'production'" class="title" id="devTag">dev</h1>
2323
<i class="icon ion-looping" ng-if="processing"></i>
2424
</ion-item>
2525
<ion-item menu-close class="item-icon-left" ng-if="loginName" href="#/user/{{loginName}}">
26-
<i class="icon ion-ios7-person"></i>
26+
<i class="icon ion-person"></i>
2727
{{loginName}}
2828
</ion-item>
2929
<ion-item menu-close class="item-icon-left" href="#/my/messages" ng-if="loginName">
30-
<i class="icon ion-ios7-email"></i>
30+
<i class="icon ion-email"></i>
3131
我的消息
3232
<span ng-if="messagesCount" class="badge badge-assertive messagesCount">
3333
{{messagesCount > 9 ? 'N' : messagesCount}}

app/templates/topics.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@
44
</ion-nav-buttons>
55
<ion-content class="has-header">
66

7-
<ion-refresher ng-if="topics.length > 0 || loadError" pulling-text="下拉刷新..." on-refresh="doRefresh()" refreshing-icon="ion-loading-c">
7+
<ion-refresher ng-if="topics.length > 0 || loadError" pulling-text="下拉刷新..." on-refresh="doRefresh()">
88
</ion-refresher>
99
<ion-list class="topics">
1010
<ion-item class="item-avatar"
1111
collection-repeat="topic in topics"
1212
collection-item-width="'100%'"
1313
collection-item-height="73"
14+
ng-style="{width: 'auto', height: '75px'}"
1415
href="#/topic/{{topic.id}}">
1516
<img ng-src="{{topic.author.avatar_url | protocol}}" ng-if="!settings.saverMode" reset-img>
1617
<h2>{{topic.title}}</h2>
@@ -28,7 +29,7 @@ <h2>{{topic.title}}</h2>
2829
Loading icon of infinte-scroll not showing with collection-repeat
2930
https://github.com/driftyco/ionic/issues/2376
3031
-->
31-
<ion-infinite-scroll on-infinite="loadMore()" distance="10%" icon="ion-loading-c" ng-if="hasNextPage && !loadError">
32+
<ion-infinite-scroll on-infinite="loadMore()" distance="10%" ng-if="hasNextPage && !loadError">
3233
</ion-infinite-scroll>
3334
</ion-content>
3435
</ion-view>

0 commit comments

Comments
 (0)