mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-06 23:15:34 +08:00
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');
|
|
});
|
|
});
|
|
})();
|