mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-01 05:02:50 +08:00
Fix about modal [SCI-1875]
This commit is contained in:
parent
2fa7591f36
commit
89230bd730
1 changed files with 2 additions and 1 deletions
|
@ -2,8 +2,9 @@
|
|||
'use strict';
|
||||
|
||||
$(document).ready(function() {
|
||||
$("[data-trigger='about-modal']").on('click', function() {
|
||||
$("[data-trigger='about-modal']").on('click', function(ev) {
|
||||
$('[data-role=about-modal]').modal('show');
|
||||
ev.preventDefault();
|
||||
});
|
||||
});
|
||||
})();
|
||||
|
|
Loading…
Reference in a new issue