Added angular-seed to public folder

This commit is contained in:
Sahat Yalkabov
2013-11-13 16:05:26 -05:00
parent 06b777cce9
commit 92a7f6159e
41 changed files with 144 additions and 557 deletions

View File

@@ -0,0 +1,11 @@
'use strict';
/* Directives */
angular.module('myApp.directives', []).
directive('appVersion', ['version', function(version) {
return function(scope, elm, attrs) {
elm.text(version);
};
}]);