Skip to content

Commit fe7f42d

Browse files
committed
style: update code style (prettier)
1 parent dd74d2f commit fe7f42d

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

samples/app/app-with-list-view.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,9 @@ new Vue({
6565
<page style="background-color: rgba(0, 0, 0, .6);">
6666
<stack-layout>
6767
<label class="h2" textAlignment="center" textWrap="true"
68-
text="${item.title}" style="color: #fff; margin-top: 20"></label>
68+
text="${
69+
item.title
70+
}" style="color: #fff; margin-top: 20"></label>
6971
<grid-layout rows="*, 60">
7072
<activity-indicator row="0" :busy="true" height="100"></activity-indicator>
7173
<img row="0" src="${item.fullImage}"/>
@@ -122,8 +124,9 @@ new Vue({
122124
fetchItems() {
123125
this.$http
124126
.getJSON(
125-
`https://www.reddit.com/${this
126-
.subreddit}.json?limit=10&count=10&after=${this.last_page}`
127+
`https://www.reddit.com/${
128+
this.subreddit
129+
}.json?limit=10&count=10&after=${this.last_page}`
127130
)
128131
.then(res => {
129132
this.items.push({

0 commit comments

Comments
 (0)