mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-14 07:26:47 +00:00
10 lines
199 B
JavaScript
10 lines
199 B
JavaScript
'use strict';
|
|
|
|
angular.module('myApp.version.version-directive', [])
|
|
|
|
.directive('appVersion', ['version', function(version) {
|
|
return function(scope, elm, attrs) {
|
|
elm.text(version);
|
|
};
|
|
}]);
|