UNPKG

deardesi

Version:

A nice, friendly tool to help you get set up and start blogging, built on the Desirae blogging platform

10 lines (7 loc) 199 B
'use strict'; angular.module('myApp.version.version-directive', []) .directive('appVersion', ['version', function(version) { return function(scope, elm, attrs) { elm.text(version); }; }]);