fossasia/loklak_webclient

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

Summary

Maintainability
A
0 mins
Test Coverage
'use strict';

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

/**
 * @ngInject
 */
function centerOfAttractionLayout() {

  return {
    scope: {
        data: '=',
    },
    templateUrl: 'wall/templates/coa.html',
  };

}

directivesModule.directive('coa', centerOfAttractionLayout);