mirror of
https://github.com/mathew-kurian/Scribe.js
synced 2025-04-25 06:45:10 +00:00
20 lines
362 B
JavaScript
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
|
|
};
|
|
|
|
}]);
|
|
|
|
}());
|