bitwarden-estensione-browser/apps/web/src/app/layouts/user-layout.component.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
273 B
TypeScript
Raw Normal View History

2018-06-08 23:08:19 +02:00
import { Component, OnInit } from "@angular/core";
@Component({
selector: "app-user-layout",
templateUrl: "user-layout.component.html",
})
2018-07-06 22:36:51 +02:00
export class UserLayoutComponent implements OnInit {
ngOnInit() {
document.body.classList.remove("layout_frontend");
}
}