kibana-with-account
Version:
kibana-with-account is develop based kibana project
17 lines (15 loc) • 400 B
JavaScript
const app = require('ui/modules').get('kibana');
app.directive('share', function () {
return {
restrict: 'E',
scope: {
objectType: '@',
objectId: '@',
setAllowEmbed: '&?allowEmbed'
},
template: require('ui/share/views/share.html'),
controller: function ($scope) {
$scope.allowEmbed = $scope.setAllowEmbed ? $scope.setAllowEmbed() : true;
}
};
});