This repository has been archived on 2020-09-11. You can view files and clone it, but cannot push or open issues or pull requests.
sp4ke.github.com/app/js/directives.js
Chakib (spike) Benziane 4ca3273b9c Using async script loading with ng-cloak
- fadeIn on scripts ready and angular bootstrap
2013-01-06 22:44:45 +01:00

13 lines
266 B
JavaScript

// Generated by CoffeeScript 1.3.1
(function() {
angular.module('myApp.directives', []).directive('appVersion', [
'version', function(version) {
return function(scope, elm, attrs) {
return elm.text(version);
};
}
]);
}).call(this);