fossasia/loklak_webclient

View on GitHub
app/js/directives/account.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict';

var directivesModule = require('./_index.js');

/**
 * @ngInject
 */

 directivesModule.directive('account', function() {
     return {
         scope: {
             data: '=',
         },
         templateUrl: 'account.html',
     };
 });