sweetp/dashboard

View on GitHub
app/scripts/dashboardApp/widgets/spWidget.directive.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict';

angular.module('dashboardApp')
    .directive('spWidget', function() {
    return {
        scope:{},
        restrict: 'E',
        transclude: true,
        template: '<div class="sp-widget" ng-transclude></div>'
    };
});