cartodb/lib/assets/javascripts/dashboard/components/user-info/dropdown-view.js
2020-06-15 10:58:47 +08:00

20 lines
469 B
JavaScript

var DropdownAdminView = require('dashboard/components/dropdown/dropdown-admin-view');
/**
* The content of the dropdown menu opened by the link at the end of the breadcrumbs menu, e.g.
* username / Maps v
* ______/\____
* | |
* | this |
* |____________|
*/
module.exports = DropdownAdminView.extend({
className: 'Dropdown',
hide: function () {
this.$el.css({
opacity: 0
});
}
});