mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
Simple project demonstrating ng2 component hosting within ng1-based application (based on official angular-seed repo).
9 lines
153 B
JavaScript
9 lines
153 B
JavaScript
'use strict';
|
|
|
|
angular.module('myApp.version', [
|
|
'myApp.version.interpolate-filter',
|
|
'myApp.version.version-directive'
|
|
])
|
|
|
|
.value('version', '0.1');
|