Scribe.js/static/js/directives/menu.js

23 lines
373 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
/**
* Menu directive
*
* Log viewer top control bar
*/
2014-11-11 21:20:33 +01:00
window.app.directive('menu', [function () {
return {
scope : false,
restrict : 'E',
templateUrl : 'partials/elements/menu.html',
replace : true
};
}]);
}());