templates.fragmentDirectiveTemplate.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
var module;
try {
module = angular.module('bonitasoft.ui.fragments');
} catch (e) {
module = angular.module('bonitasoft.ui.fragments', []);
angular.module('bonitasoft.ui').requires.push('bonitasoft.ui.fragments');
}
module.directive('{{ directiveName }}', function() {
return {
template: '{{{ rowsHtml }}}'
};
});