Files
standardnotes-app-web/app/assets/javascripts/app/services/directives/views/menuRow.js
2018-01-05 19:35:02 -06:00

21 lines
372 B
JavaScript

class MenuRow {
constructor() {
this.restrict = "E";
this.transclude = true;
this.templateUrl = "frontend/directives/menu-row.html";
this.scope = {
circle: "=",
title: "=",
subtite: "="
};
}
controller($scope, componentManager) {
'ngInject';
}
}
angular.module('app.frontend').directive('menuRow', () => new MenuRow);