4ca3273b9c
- fadeIn on scripts ready and angular bootstrap
13 lines
266 B
JavaScript
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);
|