mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
[ADF-1006] fix 'isEmpty' issue and code cleanup (#2053)
* fix 'isEmpty' issue and code cleanup * Update tsconfig.json
This commit is contained in:
committed by
Eugenio Romano
parent
29ca8b5c5e
commit
012d62eb55
@@ -66,12 +66,26 @@ export class DocumentActionsService {
|
||||
}
|
||||
|
||||
// TODO: for demo purposes only, will be removed during future revisions
|
||||
private handleStandardAction1(obj: any) {
|
||||
/**
|
||||
* @deprecated in 1.7.0
|
||||
*
|
||||
* @private
|
||||
* @memberof DocumentActionsService
|
||||
*/
|
||||
private handleStandardAction1(/*obj: any*/) {
|
||||
console.log('handleStandardAction1 is deprecated in 1.7.0 and will be removed in future versions');
|
||||
window.alert('standard document action 1');
|
||||
}
|
||||
|
||||
// TODO: for demo purposes only, will be removed during future revisions
|
||||
private handleStandardAction2(obj: any) {
|
||||
/**
|
||||
* @deprecated in 1.7.0
|
||||
*
|
||||
* @private
|
||||
* @memberof DocumentActionsService
|
||||
*/
|
||||
private handleStandardAction2(/*obj: any*/) {
|
||||
console.log('handleStandardAction2 is deprecated in 1.7.0 and will be removed in future versions');
|
||||
window.alert('standard document action 2');
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user