mirror of
https://github.com/mathew-kurian/Scribe.js
synced 2025-04-27 15:54:59 +00:00
17 lines
289 B
JavaScript
17 lines
289 B
JavaScript
|
(function () {
|
||
|
|
||
|
'use strict';
|
||
|
|
||
|
window.app.directive('menu', [function () {
|
||
|
|
||
|
return {
|
||
|
scope : false,
|
||
|
restrict : 'E',
|
||
|
templateUrl : 'partials/elements/menu.html',
|
||
|
replace : true
|
||
|
};
|
||
|
|
||
|
}]);
|
||
|
|
||
|
}());
|