mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-05 23:17:33 +08:00
3e80f761b8
Also the addon generator is fixed so it properly creates VERSION file for new addons.
9 lines
197 B
JavaScript
9 lines
197 B
JavaScript
(function() {
|
|
'use strict';
|
|
|
|
$(document).ready(function() {
|
|
$("[data-trigger='about-modal']").on('click', function() {
|
|
$('[data-role=about-modal]').modal('show');
|
|
});
|
|
});
|
|
})();
|