Sha256: 0c851444c6ed83df27b23781a3734cd767fcc829a49196dfb82b101d583ade40

Contents?: true

Size: 569 Bytes

Versions: 16

Compression:

Stored size: 569 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.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.templateUrl = 'homepage/homepage-show.tpl.html';
  }
}

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
xing-framework-0.3.0 default_configuration/base_app/frontend/src/app/homepage/homepageStates.js
xing-framework-0.2.9 default_configuration/base_app/frontend/src/app/homepage/homepageStates.js
xing-framework-0.2.9.beta1 default_configuration/base_app/frontend/src/app/homepage/homepageStates.js
xing-framework-0.2.8 default_configuration/base_app/frontend/src/app/homepage/homepageStates.js
xing-framework-0.2.8.beta1 default_configuration/base_app/frontend/src/app/homepage/homepageStates.js
xing-framework-0.2.7 default_configuration/base_app/frontend/src/app/homepage/homepageStates.js
xing-framework-0.2.7.pre.beta1 default_configuration/base_app/frontend/src/app/homepage/homepageStates.js
xing-framework-0.2.6 default_configuration/base_app/frontend/src/app/homepage/homepageStates.js
xing-framework-0.2.5 default_configuration/base_app/frontend/src/app/homepage/homepageStates.js
xing-framework-0.2.4 default_configuration/base_app/frontend/src/app/homepage/homepageStates.js
xing-framework-0.2.3 default_configuration/base_app/frontend/src/app/homepage/homepageStates.js
xing-framework-0.2.2 default_configuration/base_app/frontend/src/app/homepage/homepageStates.js
xing-framework-0.2.1 default_configuration/base_app/frontend/src/app/homepage/homepageStates.js
xing-framework-0.2.0 default_configuration/base_app/frontend/src/app/homepage/homepageStates.js
xing-framework-0.0.3 default_configuration/base_app/frontend/src/app/homepage/homepageStates.js
xing-framework-0.0.2 default_configuration/base_app/frontend/src/app/homepage/homepageStates.js