mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-04-22 18:20:57 -04:00
16 lines
296 B
JavaScript
16 lines
296 B
JavaScript
(function(global ) {
|
|
"use strict";
|
|
|
|
var cookie = window.GOVUK.getCookie('notify_admin_session');
|
|
|
|
if (cookie) {
|
|
window.alert("Session will expire: Cookie Value" + cookie);
|
|
} else {
|
|
window.alert('Session has expired');
|
|
}
|
|
console.log(cookie);
|
|
|
|
|
|
})(window);
|
|
|