"use strict"; (function () { 'use strict'; angular.module('assetModule') .directive('assetSummary', [function () { return { restrict: 'AE', templateUrl: 'views/asset/asset-summary.html', scope: { asset: '=' } }; }]); }());