mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-04-01 09:39:51 -04:00
Fix some bad HTML
This commit is contained in:
parent
2ade638d79
commit
a871158c80
4 changed files with 6 additions and 4 deletions
app/assets/javascripts/discourse
templates
views
|
@ -12,6 +12,7 @@
|
|||
<div class='controls'>
|
||||
<label class='radio'>
|
||||
<input type='radio' id="choose-topic-{{unbound id}}" name='choose_topic_id' {{action chooseTopic this target="view"}}>{{title}}
|
||||
</label>
|
||||
</div>
|
||||
{{/each}}
|
||||
</ul>
|
||||
|
|
|
@ -7,9 +7,9 @@
|
|||
</a>
|
||||
{{else}}
|
||||
{{#if noSubcategories}}
|
||||
<a href='#' {{action expand}} class='badge-category home' {{bind-attr style="badgeStyle"}}>{{i18n categories.no_subcategory}}</i></a>
|
||||
<a href='#' {{action expand}} class='badge-category home' {{bind-attr style="badgeStyle"}}>{{i18n categories.no_subcategory}}</a>
|
||||
{{else}}
|
||||
<a href='#' {{action expand}} class='badge-category home' {{bind-attr style="badgeStyle"}}>{{allCategoriesLabel}}</i></a>
|
||||
<a href='#' {{action expand}} class='badge-category home' {{bind-attr style="badgeStyle"}}>{{allCategoriesLabel}}</a>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<a href='#' {{action closeMessage this}} class='close'><i class='fa fa-times-circle'></i></a>
|
||||
<h3>{{i18n composer.similar_topics}}<h3>
|
||||
<h3>{{i18n composer.similar_topics}}</h3>
|
||||
|
||||
<ul class='topics'>
|
||||
{{#each similarTopics}}
|
||||
|
|
|
@ -207,7 +207,8 @@ Discourse.PostMenuView = Discourse.View.extend({
|
|||
}
|
||||
|
||||
buffer.push("<button title=\"" + tooltip +
|
||||
"\" data-action=\"bookmark\" class='bookmark'><div class='" + iconClass +
|
||||
"\" data-action=\"bookmark\" class='" + buttonClass +
|
||||
"'><div class='" + iconClass +
|
||||
"'></div></button>");
|
||||
},
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue