Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove the old banner notification as it references an old event #324

Merged
merged 1 commit into from
Dec 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 1 addition & 15 deletions assets/js/notifications.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,7 @@
var wiremock_notification_shown = localStorage.getItem(
"wiremock_notification_shown",
);
var notifications = [
{
content: {
title:
"Learn the basics of our new stateful mocking at WireMock Live on August 22" +
"<a href='https://info.wiremock.io/wiremock-live-demos-24-08?utm_source=oss-wmlive&utm_medium=oss-wmlive&utm_campaign=oss-wmlive&utm_id=oss-wmlive&utm_term=oss-wmlive' target='_blank'>Register now.</a>",
},
layout: {
style: "wiremock_notification_with_link",
position: "top",
className: "info",
autoHide: false,
},
},
];
var notifications = [];

if (wiremock_notification_shown == null) {
localStorage.setItem("wiremock_notification_shown", true);
Expand Down
Loading