/* -*- Mode: javascript; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ (function() { 'use strict'; /* * sgFolderStylesheet - Add CSS stylesheet for folder (addressbook or calendar) * @memberof SOGo.Common * @restrict attribute * @param {object} ngModel - the object literal describing the folder (an Addressbook or Calendar instance) * @example:
*/ function sgFolderStylesheet() { return { restrict: 'A', require: 'ngModel', scope: { ngModel: '=' }, template: [ '' ].join('') }; } angular .module('SOGo.Common') .directive('sgFolderStylesheet', sgFolderStylesheet); })();