mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 18:30:54 +08:00
cbb27241c4
This is to help with the migration to Ember CLI. In the current running version of Discourse everything should be the same as before, just with a few extra files that are not used. However, using Ember CLI this can be installed as an Ember addon. Co-Authored-By: Jarek Radosz <jradosz@gmail.com>
13 lines
446 B
JavaScript
13 lines
446 B
JavaScript
import { registerUnbound } from "discourse-common/lib/helpers";
|
|
import { renderIcon } from "discourse-common/lib/icon-library";
|
|
import deprecated from "discourse-common/lib/deprecated";
|
|
|
|
export function iconHTML(id, params) {
|
|
return renderIcon("string", id, params);
|
|
}
|
|
|
|
registerUnbound("fa-icon", function(icon, params) {
|
|
deprecated("Use `{{d-icon}}` instead of `{{fa-icon}}");
|
|
return new Handlebars.SafeString(iconHTML(icon, params));
|
|
});
|