scinote-web/app/assets/javascripts/projects/introdutory_popup.js

11 lines
277 B
JavaScript
Raw Normal View History

2016-08-25 17:44:49 +08:00
(function(){
// display introductory modal
2016-08-26 00:49:49 +08:00
if( Cookies.get('popup-already-shown') !== 'yes'){
2016-08-25 17:44:49 +08:00
$("#introductory-popup-modal").modal('show',{
backdrop: true,
keyboard: false,
});
2016-08-31 21:18:21 +08:00
Cookies.set('popup-already-shown', 'yes', { expires: 7300 });
2016-08-26 00:49:49 +08:00
}
2016-08-25 17:44:49 +08:00
})();