mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-06 23:15:34 +08:00
cb6fe50832
Conflicts: app/assets/javascripts/repositories/index.js
13 lines
296 B
JavaScript
13 lines
296 B
JavaScript
//= require repositories/import/records_importer.js
|
|
(function(global) {
|
|
'use strict';
|
|
|
|
global.pageReload = function() {
|
|
animateSpinner();
|
|
location.reload();
|
|
}
|
|
|
|
$(document).ready(function() {
|
|
$('#create-new-repository').initializeModal('#create-repo-modal');
|
|
});
|
|
})(window);
|