Sha256: fc846b37d0ff0216aa3a7e1f2eda45c87fd00990da68607061a340d10b8289b7
Contents?: true
Size: 645 Bytes
Versions: 5
Compression:
Stored size: 645 Bytes
Contents
import {State, Resolve} from 'stateInjector'; import {AdminOnlyState, TrackAdminState} from 'stateClasses'; @State('root.homepage') export class HomepageState extends TrackAdminState { constructor() { super(); this.controller = 'HomepageCtrl'; this.controllerAs = 'homepage'; this.templateUrl = 'homepage/homepage.tpl.html'; this.abstract = true; this.url = 'home'; } } @State('root.homepage.show') export class HomepageShowState { constructor() { this.url = ''; this.controller = 'HomepageShowCtrl'; this.controllerAs = 'homepageShow'; this.templateUrl = 'homepage/homepage-show.tpl.html'; } }
Version data entries
5 entries across 5 versions & 1 rubygems