Use imports for Ember.get and escapeExpression
This commit is contained in:
parent
0d5750f791
commit
31729996c2
|
@ -7,6 +7,8 @@ import { h } from "virtual-dom";
|
||||||
import getURL from "discourse-common/lib/get-url";
|
import getURL from "discourse-common/lib/get-url";
|
||||||
import categoryTitleLink from "discourse/components/category-title-link";
|
import categoryTitleLink from "discourse/components/category-title-link";
|
||||||
import I18n from "I18n";
|
import I18n from "I18n";
|
||||||
|
import { get } from "@ember/object";
|
||||||
|
import { escapeExpression } from "discourse/lib/utilities";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "category-icons",
|
name: "category-icons",
|
||||||
|
@ -20,9 +22,6 @@ export default {
|
||||||
lockIcon: lockIcon,
|
lockIcon: lockIcon,
|
||||||
});
|
});
|
||||||
|
|
||||||
var get = Em.get,
|
|
||||||
escapeExpression = Handlebars.Utils.escapeExpression;
|
|
||||||
|
|
||||||
function categoryStripe(color, classes) {
|
function categoryStripe(color, classes) {
|
||||||
var style = color ? "style='background-color: #" + color + ";'" : "";
|
var style = color ? "style='background-color: #" + color + ";'" : "";
|
||||||
return "<span class='" + classes + "' " + style + "></span>";
|
return "<span class='" + classes + "' " + style + "></span>";
|
||||||
|
|
Loading…
Reference in New Issue