mirror of
https://github.com/home-assistant/frontend.git
synced 2025-04-25 13:57:21 +00:00
17 lines
442 B
JavaScript
17 lines
442 B
JavaScript
import { dedupingMixin } from "@polymer/polymer/lib/utils/mixin.js";
|
|
import { computeTooltip } from "../../../common/string/compute-tooltip";
|
|
import { handleClick } from "../../../common/dom/handle-click";
|
|
|
|
export default dedupingMixin(
|
|
(superClass) =>
|
|
class extends superClass {
|
|
handleClick(...args) {
|
|
handleClick(this, ...args);
|
|
}
|
|
|
|
computeTooltip(...args) {
|
|
computeTooltip(...args);
|
|
}
|
|
}
|
|
);
|