mirror of
https://github.com/bitwarden/browser
synced 2025-12-26 13:13:22 +00:00
19 lines
396 B
JavaScript
19 lines
396 B
JavaScript
angular
|
|
.module('bit.components')
|
|
|
|
.component('actionButtonsComponent', {
|
|
bindings: {
|
|
uri: '<'
|
|
},
|
|
template: '',
|
|
controller: function (stateService) {
|
|
this.$onInit = (function () {
|
|
|
|
}).bind(this);
|
|
|
|
this.$onChanges = (function () {
|
|
|
|
}).bind(this);
|
|
}
|
|
});
|