mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 04:06:53 +08:00
10 lines
258 B
JavaScript
10 lines
258 B
JavaScript
(function(){
|
|
// display introductory modal
|
|
if( Cookies.get('popup-already-shown') !== 'yes'){
|
|
$("#introductory-popup-modal").modal('show',{
|
|
backdrop: true,
|
|
keyboard: false,
|
|
});
|
|
Cookies.set('popup-already-shown', 'yes');
|
|
}
|
|
})();
|