scinote-web/app/assets/javascripts/projects/introdutory_popup.js
2016-08-25 11:44:49 +02:00

11 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');
}
})();