-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update to ADF 1.9.0, make use of the new posibility of registering ha…
…ndlers for actions to the DocumentActionService
- Loading branch information
Mikel Asla
committed
Jan 15, 2018
1 parent
5fb2345
commit 0371527
Showing
8 changed files
with
76 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
{"context":{"loaders":[{"path":"/home/mikel/workspaces/bee/2017-global-hackaton/ng2-alfresco-aos-editonline/node_modules/ts-loader/index.js","query":"?{\"happyPackMode\":true,\"compilerOptions\":{\"paths\":{}}}"}],"external":{}},"mtimes":{"/home/mikel/workspaces/bee/2017-global-hackaton/ng2-alfresco-aos-editonline/index.ts":{"mtime":1506419077092,"compiledPath":"/home/mikel/workspaces/bee/2017-global-hackaton/ng2-alfresco-aos-editonline/.happypack/s--1670148620","error":null},"/home/mikel/workspaces/bee/2017-global-hackaton/ng2-alfresco-aos-editonline/src/services/aos-edit-online-service.ts":{"mtime":1506530962545,"compiledPath":"/home/mikel/workspaces/bee/2017-global-hackaton/ng2-alfresco-aos-editonline/.happypack/s-264985988","error":null}}} | ||
{"context":{"loaders":[{"path":"/home/mikel/workspaces/bee/2017-global-hackaton/ng2-alfresco-aos-editonline/node_modules/ts-loader/index.js","query":"?{\"happyPackMode\":true,\"compilerOptions\":{\"paths\":{}}}"}],"external":{}},"mtimes":{"/home/mikel/workspaces/bee/2017-global-hackaton/ng2-alfresco-aos-editonline/index.ts":{"mtime":1506419077092,"compiledPath":"/home/mikel/workspaces/bee/2017-global-hackaton/ng2-alfresco-aos-editonline/.happypack/s--1670148620","error":null},"/home/mikel/workspaces/bee/2017-global-hackaton/ng2-alfresco-aos-editonline/src/services/aos-edit-online-service.ts":{"mtime":1508149581492,"compiledPath":"/home/mikel/workspaces/bee/2017-global-hackaton/ng2-alfresco-aos-editonline/.happypack/s-264985988","error":null}}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,25 @@ | ||
import { NgModule, ModuleWithProviders } from '@angular/core'; | ||
import { CommonModule } from '@angular/common'; | ||
|
||
import { CoreModule, TRANSLATION_PROVIDER } from 'ng2-alfresco-core'; | ||
import { AOSEditOnlineService } from './src/services/aos-edit-online-service'; | ||
export * from './src/services/aos-edit-online-service'; | ||
|
||
@NgModule({ | ||
imports: [CommonModule], | ||
imports: [CoreModule], | ||
declarations: [], | ||
providers: [AOSEditOnlineService], | ||
providers: | ||
[ | ||
AOSEditOnlineService, | ||
{ | ||
provide: TRANSLATION_PROVIDER, | ||
multi: true, | ||
useValue: { | ||
name: 'ng2-alfresco-aos-editonline', | ||
source: 'assets/ng2-alfresco-aos-editonline' | ||
} | ||
} | ||
], | ||
exports: [] | ||
}) | ||
export class Ng2AlfrescoAosEditonlineModule { | ||
static forRoot(opts: any = {}): ModuleWithProviders { | ||
|
||
return { | ||
ngModule: Ng2AlfrescoAosEditonlineModule, | ||
providers: [AOSEditOnlineService] | ||
}; | ||
} | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters