mirror of
https://github.com/mathew-kurian/Scribe.js
synced 2025-04-25 06:45:10 +00:00
22 lines
373 B
JavaScript
22 lines
373 B
JavaScript
(function () {
|
|
|
|
'use strict';
|
|
|
|
/**
|
|
* Menu directive
|
|
*
|
|
* Log viewer top control bar
|
|
*/
|
|
|
|
window.app.directive('menu', [function () {
|
|
|
|
return {
|
|
scope : false,
|
|
restrict : 'E',
|
|
templateUrl : 'partials/elements/menu.html',
|
|
replace : true
|
|
};
|
|
|
|
}]);
|
|
|
|
}());
|