ledgerrb/public/app/js/core/directives/VersionDirective.js

5 lines
131 B
JavaScript
Raw Normal View History

app.directive('appVersion', ['version', function(version) {
return function(scope, elm, attrs) {
elm.text(version);
};
}]);