ohayolibs
Version:
Ohayo is a set of essential modules for ohayojp.
23 lines (19 loc) • 671 B
text/typescript
import { Component, Inject, Input } from '@angular/core';
import { I18NService, MetaService } from '@core';
import { OHAYO_I18N_TOKEN } from '@ohayo/theme';
export class EditButtonComponent {
_full: string;
set item(data: any) {
this._full = `${this.meta.github}/edit/master/${this.i18n.get(data.urls)}`;
}
constructor(private meta: MetaService, private i18n: I18NService) { }
}