freeCodeCamp/public/js/directives.js

12 lines
212 B
JavaScript
Raw Normal View History

2013-11-13 21:05:26 +00:00
'use strict';
/* Directives */
angular.module('myApp.directives', []).
directive('appVersion', ['version', function(version) {
return function(scope, elm, attrs) {
elm.text(version);
};
}]);