mirror of
https://github.com/gwenhael-le-moine/ledgerrb.git
synced 2025-01-10 05:24:24 +01:00
5 lines
131 B
JavaScript
5 lines
131 B
JavaScript
|
app.directive('appVersion', ['version', function(version) {
|
||
|
return function(scope, elm, attrs) {
|
||
|
elm.text(version);
|
||
|
};
|
||
|
}]);
|