FIX: missed semicolon :fired:
This commit is contained in:
parent
a45e87746e
commit
51b477d1f2
|
@ -145,10 +145,10 @@ var toolbar = function(selected){
|
||||||
var title = g.fullname;
|
var title = g.fullname;
|
||||||
if (g.name === "recent") {
|
if (g.name === "recent") {
|
||||||
icon = "star2";
|
icon = "star2";
|
||||||
title = "Recent"
|
title = "Recent";
|
||||||
} else if (g.name === "ungrouped") {
|
} else if (g.name === "ungrouped") {
|
||||||
icon = g.icons[0];
|
icon = g.icons[0];
|
||||||
title = "Custom"
|
title = "Custom";
|
||||||
}
|
}
|
||||||
var row = {src: Discourse.Emoji.urlFor(icon), title: title, groupId: i};
|
var row = {src: Discourse.Emoji.urlFor(icon), title: title, groupId: i};
|
||||||
if(i === selected){
|
if(i === selected){
|
||||||
|
|
Loading…
Reference in New Issue