Skip to content
This repository was archived by the owner on Dec 16, 2022. It is now read-only.

Commit

Permalink
Merge pull request #571 from YaManicKill/user-button-span
Browse files Browse the repository at this point in the history
Change user buttons to as. Allows highlighting on firefox.
  • Loading branch information
astorije committed Jan 9, 2016
2 parents baadc3d + fe0eff8 commit 82fd49c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions client/js/shout.templates.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,12 @@ templates['msg'] = template({"1":function(depth0,helpers,partials,data) {
return "self";
},"4":function(depth0,helpers,partials,data) {
var helper, helperMissing=helpers.helperMissing, escapeExpression=this.escapeExpression, functionType="function";
return " <button class=\"user\" style=\"color: #"
return " <a href=\"\" class=\"user\" style=\"color: #"
+ escapeExpression(((helpers.stringcolor || (depth0 && depth0.stringcolor) || helperMissing).call(depth0, (depth0 != null ? depth0.from : depth0), {"name":"stringcolor","hash":{},"data":data})))
+ "\">"
+ escapeExpression(((helper = (helper = helpers.mode || (depth0 != null ? depth0.mode : depth0)) != null ? helper : helperMissing),(typeof helper === functionType ? helper.call(depth0, {"name":"mode","hash":{},"data":data}) : helper)))
+ escapeExpression(((helper = (helper = helpers.from || (depth0 != null ? depth0.from : depth0)) != null ? helper : helperMissing),(typeof helper === functionType ? helper.call(depth0, {"name":"from","hash":{},"data":data}) : helper)))
+ "</button>\n";
+ "</a>\n";
},"6":function(depth0,helpers,partials,data) {
var stack1, helper, functionType="function", helperMissing=helpers.helperMissing, escapeExpression=this.escapeExpression, buffer = " <div class=\"force-newline\">\n <button id=\"toggle-"
+ escapeExpression(((helper = (helper = helpers.id || (depth0 != null ? depth0.id : depth0)) != null ? helper : helperMissing),(typeof helper === functionType ? helper.call(depth0, {"name":"id","hash":{},"data":data}) : helper)))
Expand Down
2 changes: 1 addition & 1 deletion client/views/msg.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</span>
<span class="from">
{{#if from}}
<button class="user" style="color: #{{stringcolor from}}">{{mode}}{{from}}</button>
<a href="" class="user" style="color: #{{stringcolor from}}">{{mode}}{{from}}</a>
{{/if}}
</span>
<span class="text">
Expand Down

0 comments on commit 82fd49c

Please sign in to comment.