mirror of
https://github.com/discourse/discourse.git
synced 2024-12-04 19:13:45 +08:00
8 lines
285 B
Plaintext
8 lines
285 B
Plaintext
|
import { registerUnbound } from "discourse-common/lib/helpers";
|
||
|
import { renderIcon } from "discourse-common/lib/icon-library";
|
||
|
|
||
|
registerUnbound("check-icon", function(value) {
|
||
|
let icon = value ? "check" : "times";
|
||
|
return new Handlebars.SafeString(renderIcon("string", icon));
|
||
|
});
|