blob: 8ed47bb1686510f01ead62a3b266d4ffe76baf34 (
plain)
1
2
3
4
5
6
7
8
9
10
|
'use strict';
/* http://docs-next.angularjs.org/api/angular.module.ng.$compileProvider.directive */
angular.module('myApp.directives', []).
directive('appVersion', ['version', function(version) {
return function(scope, elm, attrs) {
elm.text(version);
};
}]);
|