templates.widgetDirectiveTemplate.hbs.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ui-designer-artifact-builder-generator-angularjs Show documentation
Show all versions of ui-designer-artifact-builder-generator-angularjs Show documentation
This module is a generator on AngularJS for Artifact Builder
(function () {
try {
return angular.module('bonitasoft.ui.widgets');
} catch(e) {
return angular.module('bonitasoft.ui.widgets', []);
}
})().directive('{{ id }}', function() {
return {
{{#if controller}}
controllerAs: 'ctrl',
controller: {{{ controller }}},
{{/if}}
template: '{{{ escapedTemplate }}}'
};
});