mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
Simple project demonstrating ng2 component hosting within ng1-based application (based on official angular-seed repo).
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);
|
|
};
|
|
}]);
|