Scribe.js/static/js/directives/sidebarLogs.js
Guillaume Wuip 55c4b90960 Add docs
2014-11-13 21:33:37 +01:00

20 lines
362 B
JavaScript

(function () {
'use strict';
/**
* Log viewer sidebar directives
*/
window.app.directive('sidebarLogs', [function () {
return {
scope : false,
restrict : 'E',
templateUrl : 'partials/elements/sidebarLogs.html',
replace : true
};
}]);
}());