1
0
Fork 0
mirror of https://github.com/mmumshad/ansible-playable.git synced 2025-03-09 23:38:54 +00:00

Separate logo to a directive

This commit is contained in:
Mumshad Mannambeth 2017-07-12 13:12:21 -04:00
parent 06a261ed0c
commit e983465aed
8 changed files with 46 additions and 3 deletions

View file

@ -0,0 +1,12 @@
'use strict';
const angular = require('angular');
export default angular.module('webAppApp.logo', [])
.directive('logo', function() {
return {
template: require('./logo.html'),
restrict: 'EA',
link: function(scope, element, attrs) {}
};
})
.name;