mirror of
https://github.com/mathew-kurian/Scribe.js
synced 2025-04-27 15:54:59 +00:00
17 lines
314 B
JavaScript
17 lines
314 B
JavaScript
|
(function () {
|
||
|
|
||
|
'use strict';
|
||
|
|
||
|
window.app.directive('sidebarLoggers', [function () {
|
||
|
|
||
|
return {
|
||
|
scop : false,
|
||
|
restrict : 'E',
|
||
|
templateUrl : 'partials/elements/sidebarLoggers.html',
|
||
|
replace : true
|
||
|
};
|
||
|
|
||
|
}]);
|
||
|
|
||
|
}());
|