Sha256: bfc3564a8c465a6b569c9912ac1c62aa587ccf8ce362e7ac5571af6a5308125c
Contents?: true
Size: 388 Bytes
Versions: 21
Compression:
Stored size: 388 Bytes
Contents
import {State} from 'stateInjector'; @State('root') export class RootState { constructor() { this.templateUrl = "root.tpl.html"; this.controller = 'RootCtrl'; this.abstract = true; this.url = "/"; } } @State('root.inner') export class RootInnerState { constructor() { this.templateUrl ="inner.tpl.html"; this.abstract = true; this.url = "inner"; } }
Version data entries
21 entries across 21 versions & 1 rubygems