Angular 2.4.x Compatible
To install this library and its dependencies, run:
$ npm install @goldsam/ng-golden-layout golden-layout --save
$ npm install @types/jquery --save-devFirst, import GoldenLayoutModule into your root AppModule
import {GoldenLayoutModule} from '@goldsam/ng-golden-layout';Then, add GoldenLayoutModule.forRoot() to your AppModule's import array
@NgModule({
imports : [
CommonModule,
GoldenLayoutModule.forRoot({
...
})),
...
],
...
})
export class AppModule {}- Implement support for saving/restoring golden-layout state.
- Improve this README
- Create unit and E2E tests
To generate all *.js, *.js.map and *.d.ts files:
$ npm run tscMIT © Sam Goldmann