Scribe.js/static/js/directives/sidebarLogs.js

21 lines
362 B
JavaScript
Raw Normal View History

2014-11-11 21:20:33 +01:00
(function () {
'use strict';
2014-11-13 21:33:37 +01:00
/**
* Log viewer sidebar directives
*/
2014-11-11 21:20:33 +01:00
window.app.directive('sidebarLogs', [function () {
return {
scope : false,
restrict : 'E',
templateUrl : 'partials/elements/sidebarLogs.html',
replace : true
};
}]);
}());