scinote-web/app/assets/javascripts/projects/introdutory_popup.js
2016-09-28 15:12:30 +02:00

11 lines
277 B
JavaScript

(function(){
// display introductory modal
if( Cookies.get('popup-release-shown') !== 'yes'){
$("#introductory-popup-modal").modal('show',{
backdrop: true,
keyboard: false,
});
Cookies.set('popup-release-shown', 'yes', { expires: 7300 });
}
})();