forked from mirrors/Scribe.js
16 lines
289 B
JavaScript
16 lines
289 B
JavaScript
(function () {
|
|
|
|
'use strict';
|
|
|
|
window.app.directive('menu', [function () {
|
|
|
|
return {
|
|
scope : false,
|
|
restrict : 'E',
|
|
templateUrl : 'partials/elements/menu.html',
|
|
replace : true
|
|
};
|
|
|
|
}]);
|
|
|
|
}());
|