mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-06 07:33:04 +08:00
10 lines
226 B
JavaScript
10 lines
226 B
JavaScript
(function() {
|
|
'use strict';
|
|
|
|
$(document).ready(function() {
|
|
$("[data-trigger='about-modal']").on('click', function(ev) {
|
|
$('[data-role=about-modal]').modal('show');
|
|
ev.preventDefault();
|
|
});
|
|
});
|
|
})();
|