Scribe.js/static/js/directives/sidebarLogs.js
2014-11-11 21:20:33 +01:00

16 lines
308 B
JavaScript

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