mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
4965b61f2d
This still doesn't allow editing, but it supports showing the widgets at least.
18 lines
449 B
TypeScript
18 lines
449 B
TypeScript
import { Component } from "@angular/core";
|
|
import { ScalarClientApiService } from "../../shared/services/scalar-client-api.service";
|
|
|
|
@Component({
|
|
selector: "my-scalar-close",
|
|
templateUrl: "./scalar-close.component.html",
|
|
styleUrls: ["./scalar-close.component.scss"],
|
|
})
|
|
export class ScalarCloseComponent {
|
|
|
|
constructor(private scalar: ScalarClientApiService) {
|
|
}
|
|
|
|
public closeScalar() {
|
|
this.scalar.close();
|
|
}
|
|
}
|