Scribe.js/static/js/directives/menu.js
2014-11-11 21:20:33 +01:00

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
};
}]);
}());