mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 10:06:53 +08:00
27 lines
696 B
JavaScript
27 lines
696 B
JavaScript
(function() {
|
|
'use strict';
|
|
|
|
function initRepositoriesDropDown() {
|
|
var dropDown = $('.repositories-dropdown');
|
|
var dropDownMenu = $('.repositories-dropdown-menu');
|
|
dropDown.on('show.bs.dropdown', function() {
|
|
dropDownMenu
|
|
.find('.assigned-items-counter')
|
|
.html('<i class="fas fa-spinner fa-spin"></i>');
|
|
$.ajax({
|
|
url: dropDown.data('url'),
|
|
type: 'GET',
|
|
dataType: 'json',
|
|
success: function(data) {
|
|
dropDownMenu.html(data.html);
|
|
},
|
|
error: function() {
|
|
dropDownMenu.find('.assigned-items-counter').html('');
|
|
}
|
|
});
|
|
});
|
|
}
|
|
|
|
// init
|
|
initRepositoriesDropDown();
|
|
}());
|