/**
* @ngdoc directives
* @name msoffice
* @module s4c.directives.msoffice.Msoffice
*
* @description
* `Msoffice` Controller do módulo Msoffice
*
*
*/
(function () {
'use strict';
msofficeController.$inject = [
'$scope',
'$http',
'API_ENDPOINT',
'$window',
'$filter',
'$anchorScroll',
'$mdDialog',
'$timeout',
'Preset',
'$q',
'$sce'
];
function msofficeController(
$scope,
$http,
API_ENDPOINT,
$window,
$filter,
$anchorScroll,
$mdDialog,
$timeout,
Preset,
$q,
$sce) {
$scope.res = $scope.$root.res;
angular.extend($scope, {
});
}
function s4cMsoffice() {
return {
restrict: 'EA',
templateUrl: 'app/directives/ms-office/ms-office.html',
scope: {},
controller: msofficeController
};
}
angular.module('s4c.components.msoffice', [])
.directive('s4cMsoffice', s4cMsoffice);
})();