Scribe.js/static/js/directives/sidebarLoggers.js

17 lines
314 B
JavaScript
Raw Normal View History

2014-11-11 21:20:33 +01:00
(function () {
'use strict';
window.app.directive('sidebarLoggers', [function () {
return {
scop : false,
restrict : 'E',
templateUrl : 'partials/elements/sidebarLoggers.html',
replace : true
};
}]);
}());