mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
* process details improvements - new: redirect to task instead of opening a dialog (Activiti parity) - fixed: task headers for nameless tasks - fixed: cursor style for task list items - new: stub for ng-1 directive api (Activiti stencils) - code cleanup * error handling fixes
17 lines
521 B
JavaScript
17 lines
521 B
JavaScript
/** stubs for Angular 1 api */
|
|
window.angular = {
|
|
module: function (moduleName) {
|
|
console.info('ng1: module %s requested', moduleName);
|
|
return {
|
|
controller: function (controllerName) {
|
|
console.info('ng1: controller %s requested', controllerName);
|
|
return {}
|
|
},
|
|
directive: function (directiveName) {
|
|
console.info('ng1: directive %s requested', directiveName);
|
|
return {}
|
|
}
|
|
}
|
|
}
|
|
};
|