Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions addon/ng2/blueprints/mobile/files/__path__/main-app-shell.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,13 @@ const appConfig: AppConfig = {
]
}

// The build system will call this function to get a bootloader
export function getBootloader() : Bootloader {
return new Bootloader(bootloaderConfig);
}

// The build system will call this function with the bootloader from
// getBootloader and the contents of the index page
export function serialize(bootloader: Bootloader, template: string) : string {
appConfig.template = template;
return bootloader.serializeApplication(appConfig);
Expand Down