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

17 lines
289 B
JavaScript
Raw Normal View History

2014-11-11 21:20:33 +01:00
(function () {
'use strict';
window.app.directive('menu', [function () {
return {
scope : false,
restrict : 'E',
templateUrl : 'partials/elements/menu.html',
replace : true
};
}]);
}());