fix input value bug code review by bikai
Showing
3 changed files
with
4 additions
and
4 deletions
@@ -28,7 +28,7 @@ | @@ -28,7 +28,7 @@ | ||
28 | {{/ consults}} | 28 | {{/ consults}} |
29 | 29 | ||
30 | {{#if loadmore}} | 30 | {{#if loadmore}} |
31 | - <input id="loadMoreUrl" type="hidden" value={{loadMoreUrl}}> | 31 | + <input id="loadMoreUrl" type="hidden" value="{{loadMoreUrl}}"> |
32 | {{/if}} | 32 | {{/if}} |
33 | </div> | 33 | </div> |
34 | {{> layout/footer}} | 34 | {{> layout/footer}} |
@@ -130,10 +130,10 @@ | @@ -130,10 +130,10 @@ | ||
130 | </div> | 130 | </div> |
131 | {{/cartInfo}} | 131 | {{/cartInfo}} |
132 | {{#if introUrl}} | 132 | {{#if introUrl}} |
133 | - <input id="introUrl" type="hidden" value='{{introUrl}}'> | 133 | + <input id="introUrl" type="hidden" value="{{introUrl}}"> |
134 | {{/if}} | 134 | {{/if}} |
135 | {{#if id}} | 135 | {{#if id}} |
136 | - <input id="productId" type="hidden" value='{{id}}'> | 136 | + <input id="productId" type="hidden" value="{{id}}"> |
137 | {{/if}} | 137 | {{/if}} |
138 | 138 | ||
139 | </div> | 139 | </div> |
-
Please register or login to post a comment